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.
1 parent d067066 commit 910c014Copy full SHA for 910c014
.github/workflows/ci.yaml
@@ -42,6 +42,16 @@ jobs:
42
git fetch origin ${{ github.base_ref }}
43
git rebase origin/${{ github.base_ref }}
44
45
+ - name: Check changelog
46
+ run: |
47
+ base_ref="${{ github.base_ref }}"
48
+ if [ -z "$base_ref" ]; then
49
+ base_ref="master"
50
+ fi
51
+ if [[ -z "$(git log origin/$base_ref..HEAD --oneline --grep='Changelog-')" && "$(git rev-parse --abbrev-ref HEAD)" != "$base_ref" ]]; then
52
+ echo "::error::'Changelog' entry is missing in all commits" && exit 1
53
54
+
55
- name: Set up Python 3.8
56
uses: actions/setup-python@v5
57
with:
0 commit comments