Release Check #281
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 Check | |
on: | |
schedule: | |
# "At 04:05 on Thursday" according to https://crontab.guru/#5_4_*_*_4 | |
- cron: '5 4 * * 4' | |
workflow_dispatch: | |
jobs: | |
release-check: | |
name: Release Check | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
branch: [master, release-1.x] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ matrix.branch }} | |
- working-directory: bin/release-check | |
run: | | |
PRODUCT="jira" \ | |
GH_USER=${{ secrets.GH_USER }} \ | |
GH_TOKEN=${{ secrets.GH_TOKEN }} \ | |
GITHUB_REF=${{ matrix.branch }} \ | |
./run-product-release-check.sh | |
- working-directory: bin/release-check | |
run: | | |
PRODUCT="confluence" \ | |
GH_USER=${{ secrets.GH_USER }} \ | |
GH_TOKEN=${{ secrets.GH_TOKEN }} \ | |
GITHUB_REF=${{ matrix.branch }} \ | |
./run-product-release-check.sh | |
- working-directory: bin/release-check | |
run: | | |
PRODUCT="bitbucket" \ | |
GH_USER=${{ secrets.GH_USER }} \ | |
GH_TOKEN=${{ secrets.GH_TOKEN }} \ | |
GITHUB_REF=${{ matrix.branch }} \ | |
./run-product-release-check.sh |