Create a11y S3 snapshot #134
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: Create a11y S3 snapshot | |
# yamllint disable-line rule:truthy | |
on: | |
schedule: | |
- cron: '15 12 * * *' | |
workflow_dispatch: | |
inputs: | |
cf_space: | |
description: deployed cloud.gov space | |
required: true | |
default: prod | |
jobs: | |
snapshot: | |
runs-on: ubuntu-latest | |
steps: | |
- name: run create-a11y-snapshot cli job in chosen space | |
uses: cloud-gov/cg-cli-tools@main | |
with: | |
cf_api: https://api.fr.cloud.gov | |
cf_username: ${{ secrets.CF_USERNAME }} | |
cf_password: ${{ secrets.CF_PASSWORD }} | |
cf_org: gsatts-sitescan | |
cf_space: ${{ github.event.inputs.cf_space || 'prod' }} | |
cf_command: | | |
run-task site-scanner-consumer | |
-c "node dist/apps/cli/main.js create-a11y-snapshot" | |
-k 4G -m 4G | |
--name github-action-create-a11y-snapshot-${{ github.run_id }} |