Track workflow metrics #38687
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: Track workflow metrics | |
# Run when workflows complete, on pull request and on push | |
on: | |
workflow_run: | |
workflows: | |
- "**" | |
types: | |
- completed | |
pull_request: | |
push: | |
jobs: | |
send: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: int128/datadog-actions-metrics@v1 | |
with: | |
# create an API key in https://docs.datadoghq.com/account_management/api-app-keys/ | |
datadog-api-key: ${{ secrets.DATADOG_API_KEY }} | |
collect-job-metrics: true |