Skip to content

[MRG] Add automatic labeler to PR and check release notes updates #704

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Dec 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix action
  • Loading branch information
rflamary committed Dec 11, 2024
commit 1eff18b6af7b68a378d9cfe54029293ad8965bec
7 changes: 5 additions & 2 deletions .github/workflows/check_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Verify Changed files
uses: tj-actions/verify-changed-files@v20
uses: tj-actions/changed-files@v45
id: changed-release-file
with:
files: 'RELEASES.md'
fail-if-unchanged: true
- name: Check if RELEASES.md file is changed
if: steps.changed-release-file.outputs.any_changed == 'false'
run: exit 1
Loading