Landmark Example Pages: Remove link to FAE and update link to ainspec… #95
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@v3 | |
- name: Trigger wai-aria-practices update | |
uses: actions/github-script@v6 | |
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' | |
}); |