We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e21e7c8 commit 5efb449Copy full SHA for 5efb449
.github/workflows/check-version.yml
@@ -1,4 +1,3 @@
1
-# write a github actions workflow that checks that the version in the pyproject.toml file has been updated on every pull request to master
2
name: Check version update
3
on:
4
pull_request:
@@ -9,7 +8,10 @@ jobs:
9
8
check-version:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v4
+ - name: Checkout PR
+ uses: actions/checkout@v4
13
+ with:
14
+ fetch-depth: 0 # Fetch all history for all branches and tags
15
- name: Check version update
16
run: |
17
PR_NUMBER=${{ github.event.pull_request.number }}
0 commit comments