ci: export github actions workflow usage for runs created on 2025-09-01 #5
Workflow file for this run
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: Export Workflow Usage | |
| # This workflow runs on all pushes to the repo so we can test changes and provide | |
| # fast feedback. | |
| on: | |
| push: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| export_workflow_usage: | |
| name: Export Workflow Usage | |
| uses: wealthsimple/github-workflows/.github/workflows/export_workflow_usage.yml@v1 | |
| secrets: inherit | |
| with: | |
| date: '2025-09-01' | |
| s3_bucket: 'dse-hypercube' | |
| s3_key_prefix: 'production/github_actions_runtime_data/2025-09-01' | |
| overwrite_existing_data: false |