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 642f0af commit 81a4527Copy full SHA for 81a4527
.github/workflows/pr-conventional-title.yml
@@ -14,6 +14,8 @@ jobs:
14
validate-pr-title:
15
runs-on: ubuntu-latest
16
permissions:
17
+ # We need `contents: read` to be able to use the local GitHub Action
18
+ contents: read
19
# We need `pull-requests: write` to be able to post comments on PRs
20
pull-requests: write
21
steps:
@@ -33,6 +35,9 @@ jobs:
33
35
doesn't start with an uppercase character.
34
36
env:
37
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
+ - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
39
+ with:
40
+ persist-credentials: false
41
- uses: ./.github/actions/sticky-pr-comment
42
if: always() && steps.pr-title.outputs.error_message != null
43
with:
0 commit comments