forked from hashicorp/consul-k8s
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c740fed
commit d482dd9
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# This workflow checks that there is either a 'pr/no-backport' label applied to a PR | ||
# or there is a backport/<pr number>.txt file associated with a PR for a backport label | ||
|
||
name: Backport Checker | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, labeled] | ||
# Runs on PRs to main and all release branches | ||
branches: | ||
- main | ||
- release/* | ||
|
||
jobs: | ||
# checks that a backport label is present for a PR | ||
backport-check: | ||
# If there's a `pr/no-backport` 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-backport') || github.event.pull_request.user.login == 'hc-github-team-consul-core' )" | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check for Backport Label | ||
run: | | ||
labels="${{join(github.event.pull_request.labels.*.name, ', ') }}" | ||
if [[ "$labels" =~ .*"backport/".* ]]; then | ||
echo "Found backport label!" | ||
exit 0 | ||
fi | ||
# Fail status check when no backport label was found on the PR | ||
echo "Did not find a backport label matching the pattern 'backport/*' and the 'pr/no-backport' label was not applied. Reference - https://github.com/hashicorp/consul-k8s/pull/1982" | ||
exit 1 | ||