Enqueue scans #1162
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: Enqueue scans | |
# yamllint disable-line rule:truthy | |
on: | |
schedule: | |
- cron: '10 0 * * *' | |
workflow_dispatch: | |
inputs: | |
cf_space: | |
description: deployed cloud.gov space | |
required: true | |
default: prod | |
jobs: | |
enqueue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: run enqueue-scans 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 enqueue-scans" | |
-k 2G -m 2G | |
--name github-action-enqueue-scans-${{ github.run_id }} |