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 d46c54d commit 765b764Copy full SHA for 765b764
1 file changed
.github/workflows/ci.yml
@@ -24,7 +24,10 @@ jobs:
24
with:
25
python-version: "3.12"
26
- name: Lint commit messages
27
- run: python .github/scripts/lintcommit.py --range "origin/${{ github.event.pull_request.base.ref }}..${{ github.event.pull_request.head.sha }}"
+ env:
28
+ PR_BASE_SHA: ${{ github.event.pull_request.base.sha }}
29
+ PR_HEAD_SHA: ${{ github.event.pull_request.head.sha }}
30
+ run: python .github/scripts/lintcommit.py --range "${PR_BASE_SHA}..${PR_HEAD_SHA}"
31
32
build:
33
runs-on: ubuntu-latest
0 commit comments