```-x-```

Update .yml
pull/29/head
cvnertnc 2 years ago committed by GitHub
parent 75cf056d7d
commit 961d49da1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,14 +4,16 @@
# https://github.com/codespell-project/actions-codespell
# https://github.com/codespell-project/codespell
name: codespell
on: pull_request
on:
# pull_request
workflow_dispatch:
permissions: {}
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: codespell-project/actions-codespell@master

@ -4,12 +4,21 @@
name: 'yuzu verify'
on:
pull_request:
branches: [ master ]
env:
PR_NUMBER: pr${{ github.event.number }}
# workflow_call:
# inputs:
# from_ci:
# type: boolean
# required: false
# default: true
workflow_dispatch:
jobs:
codespell:
permissions: write-all
needs: check
uses: ./.github/workflows/codespell.yml
if: ${{ needs.check.outputs.SHOULD_BUILD == 1 }}
secrets: inherit
format:
name: 'verify format'
runs-on: ubuntu-latest

Loading…
Cancel
Save