forked from metabase/metabase
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 1.22 KB
/
release-status.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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,
});