2021-02-26 21:29:49 +00:00
# This workflow checks that there is either a 'pr/no-changelog' label applied to a PR
# or there is a .changelog/<pr number>.txt file associated with a PR for a changelog entry
2022-05-20 23:06:35 +00:00
name : Changelog Checker
2021-02-26 21:29:49 +00:00
on :
pull_request :
types : [ opened, synchronize, labeled]
2021-06-29 21:04:24 +00:00
# Runs on PRs to main and all release branches
2021-02-26 21:29:49 +00:00
branches :
2021-06-29 21:04:24 +00:00
- main
2021-02-26 21:29:49 +00:00
- release/*
jobs :
# checks that a .changelog entry is present for a PR
changelog-check :
2022-05-03 21:17:32 +00:00
# If there a `pr/no-changelog` label we ignore this check. Also, we ignore PRs created by the bot assigned to `backport-assistant`
if : "! ( contains(github.event.pull_request.labels.*.name, 'pr/no-changelog') || github.event.pull_request.user.login == 'hc-github-team-consul-core' )"
2021-02-26 21:29:49 +00:00
runs-on : ubuntu-latest
steps :
- uses : actions/checkout@v2
with :
ref : ${{ github.event.pull_request.head.sha }}
fetch-depth : 0 # by default the checkout action doesn't checkout all branches
- name : Check for changelog entry in diff
run : |
# check if there is a diff in the .changelog directory
2021-08-16 19:40:51 +00:00
# for PRs against the main branch, the changelog file name should match the PR number
2022-10-03 23:49:24 +00:00
if [ "${{ github.event.pull_request.base.ref }}" = "${{ github.event.repository.default_branch }}" ]; then
2021-08-16 19:40:51 +00:00
enforce_matching_pull_request_number="matching this PR number "
2022-12-12 20:36:42 +00:00
changelog_file_path=".changelog/(_)?${{ github.event.pull_request.number }}.txt"
2021-08-16 19:40:51 +00:00
else
2022-12-12 20:36:42 +00:00
changelog_file_path=".changelog/[_0-9]*.txt"
2021-08-16 19:40:51 +00:00
fi
2022-12-12 20:36:42 +00:00
changelog_files=$(git --no-pager diff --name-only HEAD "$(git merge-base HEAD "origin/main")" | egrep ${changelog_file_path})
2021-02-26 21:29:49 +00:00
# If we do not find a file in .changelog/, we fail the check
if [ -z "$changelog_files" ]; then
# Fail status check when no .changelog entry was found on the PR
2021-08-16 19:40:51 +00:00
echo "Did not find a .changelog entry ${enforce_matching_pull_request_number}and the 'pr/no-changelog' label was not applied. Reference - https://github.com/hashicorp/consul/pull/8387"
2021-02-26 21:29:49 +00:00
exit 1
else
echo "Found .changelog entry in PR!"
fi