All Pages: Use multiple kbd elements for commands with multiple keys … #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trigger deploy for WAI-APG site | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/wai-trigger-deploy.yml" | |
- "common/**" | |
- "content/**" | |
- "README.md" | |
jobs: | |
deploy-wai: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Trigger wai-aria-practices update | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.GH_TOKEN }} | |
script: | | |
await github.rest.actions.createWorkflowDispatch({ | |
owner: context.repo.owner, | |
repo: 'wai-aria-practices', | |
workflow_id: 'deploy.yml', | |
ref: 'main' | |
}); |