Cronitor Monitoring Relay #5
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: Cronitor Monitoring Relay | |
| on: | |
| workflow_run: | |
| workflows: ['*'] | |
| types: [requested,completed] | |
| jobs: | |
| send-telemetry: | |
| runs-on: ubuntu-latest | |
| name: Send Telemetry | |
| steps: | |
| - name: Send execution details to the Cronitor for Github Actions agent | |
| uses: cronitorio/monitor-github-actions@v7 | |
| with: | |
| event: ${{ toJSON(github.event) }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| cronitor_key: ${{ secrets.CRONITOR_API_KEY }} | |
| cronitor_group: actions | |
| cronitor_notify: default |