Release and Backport Status Check #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: Release Status Check | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 13 * * *' # every day at 8am US eastern time | |
jobs: | |
check-release-status: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
sparse-checkout: release | |
- name: Prepare build scripts | |
run: cd ${{ github.workspace }}/release && yarn --frozen-lockfile && yarn build | |
- name: Check release status and post to Slack | |
uses: actions/github-script@v6 | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
SLACK_RELEASE_CHANNEL: ${{ vars.SLACK_RELEASE_CHANNEL }} | |
with: | |
script: | # js | |
const { checkReleaseStatus } = require('${{ github.workspace }}/release/dist/index.cjs'); | |
if (!process.env.SLACK_BOT_TOKEN) { | |
throw new Error('SLACK_BOT_TOKEN is required'); | |
} | |
if (!process.env.SLACK_RELEASE_CHANNEL) { | |
throw new Error('SLACK_RELEASE_CHANNEL is required'); | |
} | |
const ossReleased = await checkReleaseStatus({ | |
github, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
channelName: process.env.SLACK_RELEASE_CHANNEL, | |
}); |