Requeue stale scans #204
This file contains hidden or 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: Requeue stale scans | |
| # yamllint disable-line rule:truthy | |
| on: | |
| schedule: | |
| - cron: '0 12 * * 2,4,6' | |
| workflow_dispatch: | |
| inputs: | |
| cf_space: | |
| description: deployed cloud.gov space | |
| required: true | |
| default: prod | |
| jobs: | |
| enqueue: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: run requeue-stale-scans cli job in chosen space | |
| uses: cloud-gov/cg-cli-tools@bafcd2b3d36984482c01b1dd2c3750b4f355b8a2 # 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 requeue-stale-scans" | |
| -k 2G -m 2G | |
| --name github-action-requeue-stale-scans-${{ github.run_id }} |