From 43305ec7880f24b55ca516ca17d524b24db8572d Mon Sep 17 00:00:00 2001 From: Ashish Amarnath Date: Wed, 17 Jun 2020 07:37:09 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=83=E2=80=8D=E2=99=82=EF=B8=8Fallow=20?= =?UTF-8?q?ignoring=20missing=20changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ashish Amarnath --- .github/workflows/pr-changelog-check.yml | 1 + site/docs/master/code-standards.md | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/workflows/pr-changelog-check.yml b/.github/workflows/pr-changelog-check.yml index 78be9677f..c7b6890b5 100644 --- a/.github/workflows/pr-changelog-check.yml +++ b/.github/workflows/pr-changelog-check.yml @@ -11,4 +11,5 @@ jobs: uses: actions/checkout@v2 - name: Changelog check + if: ${{ !contains(github.event.pull_request.labels.*.name, 'changelog-not-required') }} run: ./hack/changelog-check.sh diff --git a/site/docs/master/code-standards.md b/site/docs/master/code-standards.md index 5c6c8c67c..281c24adb 100644 --- a/site/docs/master/code-standards.md +++ b/site/docs/master/code-standards.md @@ -12,6 +12,8 @@ changelog. Add that to the PR. +If a PR does not warrant a changelog, the CI check for a changelog can be skipped by applying a `changelog-not-required` label on the PR. + ## Code - Log messages are capitalized.