We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b79177 commit 8145802Copy full SHA for 8145802
.github/workflows/lint.yml
@@ -20,8 +20,6 @@ jobs:
20
steps:
21
- name: Checkout
22
uses: actions/checkout@v4
23
- with:
24
- fetch-depth: 0
25
26
- name: Setup Git
27
run: |
@@ -99,10 +97,10 @@ jobs:
99
97
100
98
- name: Create PullRequest
101
102
- git branch -f lint
103
- git switch lint
+ git branch -f lint/${{ github.sha }}
+ git switch lint/${{ github.sha }}
104
git add .
105
- git commit -m "lint:${{ github.ref }}"
106
- git push -f origin lint
107
- gh pr create --fill -B main -H lint
+ git commit -m "lint:${{ github.sha }}"
+ git push -f origin lint/${{ github.sha }}
+ gh pr create --fill-verbose -t lint:${{ github.ref }} -B main -H lint/${{ github.sha }} -
108
continue-on-error: true
0 commit comments