Flake Status Report #3
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: Flake Status Report | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 6 * * 2,5' # Tuesdays and Fridays at 1am US eastern time | |
jobs: | |
flake-status-report: | |
# don't run this workflow on a cron for forks | |
if: ${{ github.event_name != 'schedule' || github.repository == 'metabase/metabase' }} | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
sparse-checkout: release | |
- name: Prepare build scripts | |
run: cd ${{ github.workspace }}/release && yarn --frozen-lockfile && yarn build | |
- name: Post Flake Status Report | |
uses: actions/github-script@v7 | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
with: | |
script: | # js | |
const { summarizeFlakes } = require('${{ github.workspace }}/release/dist/index.cjs'); | |
if (!process.env.SLACK_BOT_TOKEN) { | |
throw new Error('SLACK_BOT_TOKEN is required'); | |
} | |
await summarizeFlakes({ | |
github, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
channelName: 'engineering-ci' | |
}); |