We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e8b53c commit 6e43623Copy full SHA for 6e43623
1 file changed
.github/workflows/dependabot-pr-trimmer.yaml
@@ -17,7 +17,7 @@
17
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18
19
name: Dependabot PR trimmer
20
-run-name: Filter message body of PR #
+run-name: Filter message body of PR ${{github.event.pull_request.number}}
21
22
on:
23
pull_request:
@@ -29,10 +29,15 @@ on:
29
type: string
30
required: true
31
32
+# Declare default permissions as read only.
33
+permissions: read-all
34
+
35
jobs:
- setup:
36
+ filter-message:
37
+ name: Filter PR message body
38
runs-on: ubuntu-24.04
39
timeout-minutes: 5
40
+ permissions: write-all
41
steps:
42
- if: >-
43
github.event.pull_request.user.login == 'dependabot[bot]' ||
0 commit comments