A GitHub Action which creates issue labels for generating a VPAT report
name: Create VPAT issue labels
on:
workflow_dispatch: # Manually trigger.
schedule:
- cron: "0 0 * * SUN" # Every Sunday at 00:00.
jobs:
generate_report:
runs-on: ubuntu-latest
steps:
- uses: dequelabs/action-vpat-labels@main
Name | Description | Default |
---|---|---|
github-token |
Optional PAT | secrets.GITHUB_TOKEN |
- make sure
dist/
is checked in after updating files insrc/
(the precommit hook should do this for you) - generate labels by cloning
action-vpat-report
in../action-vpat-report
, then runningyarn generate-labels
- test by opening a draft PR with your changes, the check the
Tests/create_labels
job
Unlicensed, this likely won't work outside of dequelabs
repositories anyway.