Skip to content

Remove opened triggers from the release notes check action #15

Remove opened triggers from the release notes check action

Remove opened triggers from the release notes check action #15

Workflow file for this run

name: Check Labels
# Every PR should have a label and some labels should include an update to the release notes
on:
pull_request:
branches-ignore:
- 'main'
types: [ synchronize, labeled, unlabeled ]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
labels-check:
# https://github.com/actions/virtual-environments/
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check PR labels
run: |
echo "${{ toJson(github.event.pull_request.labels.*.name) }}"
all_pr_labels= $(jq -c '.[]' <<< ${{ toJson(github.event.pull_request.labels.*.name) }} )
echo "$all_pr_labels"
if contains($all_pr_labels, 'Breaking change') || contains($all_pr_labels, 'Feature') || contains($all_pr_labels, 'Fix')
then
git fetch origin develop --depth 1
if [ -n "$(git diff origin/develop RELEASE_NOTES.md)" ]
then
echo "RELEASE_NOTES.md was updated"
exit 0
else
echo "::error::Add release notes for your PR by updating RELEASE_NOTES.md"
exit 1
fi
if contains($all_pr_labels, 'Dependencies') || contains($all_pr_labels, 'Chore')
then
echo "No extra actions needed for used labels"
exit 0
fi
echo "::error::You must add a valid label to this PR"
exit 1