```-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/actions-codespell
# https://github.com/codespell-project/codespell # https://github.com/codespell-project/codespell
name: codespell name: codespell
on: pull_request on:
# pull_request
workflow_dispatch:
permissions: {} permissions: {}
jobs: jobs:
codespell: codespell:
name: Check for spelling errors name: Check for spelling errors
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
persist-credentials: false persist-credentials: false
- uses: codespell-project/actions-codespell@master - uses: codespell-project/actions-codespell@master

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

Loading…
Cancel
Save