From 9022c23067c870670f6296315ba1556c1661157a Mon Sep 17 00:00:00 2001 From: Joris Vaillant Date: Tue, 14 Nov 2023 13:53:40 +0100 Subject: [PATCH 1/2] ci: add ci step to check changelog update before merging in master --- .github/workflows/check-changelog.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/check-changelog.md diff --git a/.github/workflows/check-changelog.md b/.github/workflows/check-changelog.md new file mode 100644 index 000000000..2589a5522 --- /dev/null +++ b/.github/workflows/check-changelog.md @@ -0,0 +1,14 @@ +name: Check-changelog +on: + pull_request: + types: [assigned, opened, synchronize, reopened, labeled, unlabeled] + branches: + - master +jobs: + check-changelog: + name: Check changelog action + runs-on: ubuntu-20.04 + steps: + - uses: tarides/changelog-check-action@v2 + with: + changelog: CHANGELOG.md From 080cf17bc56cdd8255a76337b49d153855106464 Mon Sep 17 00:00:00 2001 From: Joris Vaillant Date: Tue, 14 Nov 2023 13:54:52 +0100 Subject: [PATCH 2/2] ci: check in devel branch instead of master branch --- .github/workflows/check-changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-changelog.md b/.github/workflows/check-changelog.md index 2589a5522..61069be77 100644 --- a/.github/workflows/check-changelog.md +++ b/.github/workflows/check-changelog.md @@ -3,7 +3,7 @@ on: pull_request: types: [assigned, opened, synchronize, reopened, labeled, unlabeled] branches: - - master + - devel jobs: check-changelog: name: Check changelog action