Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
using: "composite"
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Check for changes in changelog
Expand Down
2 changes: 1 addition & 1 deletion check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ "${NO_CHANGELOG_LABEL}" = "true" ]; then
else
# a changelog check is required
# fail if the diff is empty
if git diff --exit-code "origin/${BASE_REF}" -- CHANGES.md; then
if git diff --exit-code "origin/${BASE_REF}" -- CHANGE-LOG-2023.md; then
>&2 echo "User-visible changes should come with an entry in the changelog. This behavior
can be overridden by using the \"no changelog\" label, which is used for changes
that are not user-visible."
Expand Down