We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 58ab2f2 + 29f8cd6 commit 0f42320Copy full SHA for 0f42320
.github/workflows/greetings.yml
.github/workflows/pr.yml
@@ -0,0 +1,19 @@
1
+on: pull_request
2
+name: Review
3
+jobs:
4
+ changelog:
5
+ runs-on: ubuntu-latest
6
+ name: Changelog should be updated
7
+ strategy:
8
+ fail-fast: false
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v2
12
+ with:
13
+ fetch-depth: 2
14
+
15
+ - name: Git fetch
16
+ run: git fetch
17
18
+ - name: Check that changelog has been updated.
19
+ run: git diff --exit-code origin/${{ github.base_ref }} -- CHANGELOG.md && exit 1 || exit 0
0 commit comments