CI Reports #32
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: CI Reports | |
on: | |
schedule: | |
- cron: "0 7 * * 1" # At 7:00 on Monday | |
workflow_dispatch: | |
jobs: | |
check-licenses: | |
name: CI Reports | |
runs-on: ubuntu-latest | |
environment: release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: "${{ github.workspace }}/go.mod" | |
cache: false | |
- name: Send Regressions Report | |
run: make slack-report REPORT_TYPE=regressions | |
- name: Send Flakiness Report | |
run: make slack-report REPORT_TYPE=flakiness |