chore: fix stale FOG_VERSION/FOG_CHANNEL on feature-fog2-gui #693
This file contains hidden or 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 FOG version | |
| # Push-triggered trigger stub. All the actual version-drift-detection logic | |
| # lives in FOGProject/fog-workflows as a reusable workflow (workflow_call) - | |
| # this file exists only because GitHub Actions has no native cross-repo push | |
| # trigger, so something has to live here to react to pushes/merges. See | |
| # fog-docs' Development section for the full picture. | |
| # | |
| # `stable` is intentionally not watched - its version is owned entirely by | |
| # fog-workflows' stable-releases.yml release flow. | |
| on: | |
| push: | |
| branches: | |
| - working-1.6 | |
| - dev-branch | |
| - 'rc-*' | |
| - 'feature-*' | |
| workflow_dispatch: {} | |
| concurrency: | |
| group: fog-version-check-${{ github.ref_name }} | |
| cancel-in-progress: false | |
| jobs: | |
| check-version: | |
| uses: FOGProject/fog-workflows/.github/workflows/check-fog-version.yml@main | |
| with: | |
| branch: ${{ github.ref_name }} | |
| secrets: inherit |