Report Workflow Stats #147
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: Report Workflow Stats | |
on: | |
workflow_run: | |
workflows: | |
- Commitlint | |
- PR to main branch | |
- Publish to npm | |
types: [completed] | |
jobs: | |
gh-workflow-stats: | |
name: Github Workflow Stats | |
runs-on: ubuntu-22.04 | |
permissions: | |
actions: read | |
steps: | |
- name: Export GH Workflow Stats | |
uses: neondatabase/[email protected] | |
with: | |
DB_URI: ${{ secrets.GH_REPORT_STATS_DB_RW_CONNSTR }} | |
DB_TABLE: 'gh_workflow_stats_neonctl' | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_RUN_ID: ${{ github.event.workflow_run.id }} |