Check for unreleased changes #666
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: Check for unreleased changes | |
on: | |
schedule: | |
- cron: '48 8 * * *' | |
workflow_dispatch: {} | |
permissions: | |
issues: write | |
jobs: | |
check-for-token: | |
outputs: | |
has-token: ${{ steps.calc.outputs.HAS_SECRET }} | |
runs-on: ubuntu-latest | |
steps: | |
- id: calc | |
run: echo "HAS_SECRET=${HAS_SECRET}" >> "${GITHUB_OUTPUT}" | |
env: | |
HAS_SECRET: ${{ secrets.RUN_WORKFLOW_FROM_WORKFLOW != '' }} | |
check-unreleased-changes: | |
needs: check-for-token | |
if: needs.check-for-token.outputs.has-token == 'true' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: yarn | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.work | |
cache-dependency-path: src/go/**/go.sum | |
- run: pip install setuptools | |
- run: yarn install --frozen-lockfile | |
- run: yarn ucmonitor | |
env: | |
GITHUB_TOKEN: ${{ secrets.RUN_WORKFLOW_FROM_WORKFLOW }} |