Bump version: 0.7.6 → 0.7.7 #383
Workflow file for this run
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| tags: ['v*'] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pre-commit: | |
| if: ${{ !github.event.pull_request.draft }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| - name: pre-commit | |
| run: make pre-commit | |
| tests: | |
| if: github.repository == 'Climate-REF/ref-sample-data' | |
| runs-on: "self-hosted" | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| - name: Verify registry | |
| env: | |
| QUIET: true | |
| COLUMNS: 160 | |
| run: | | |
| make fetch-test-data | |
| git diff --exit-code | |
| # Check if a changelog message was added to the PR | |
| # Only runs on pull requests | |
| check-for-changelog: | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup | |
| - name: Get all changelog files | |
| id: changed-changelog-files | |
| uses: tj-actions/changed-files@v45 | |
| with: | |
| # Avoid using single or double quotes for multiline patterns | |
| files: | | |
| changelog/*.md | |
| - name: Print out the changed files | |
| if: steps.changed-files-specific.outputs.any_changed == 'true' | |
| env: | |
| ALL_CHANGED_FILES: ${{ steps.changed-changelog-files.outputs.all_changed_files }} | |
| run: | | |
| make changelog-draft | |
| - name: Fail if no changelog message is present | |
| if: steps.changed-changelog-files.outputs.any_changed == 'false' | |
| run: | | |
| echo "No changelog present." | |
| exit 1 |