Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/pr-verifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ on:
pull_request:
types: [opened, edited, synchronize, reopened]

permissions: {}
permissions:
pull-requests: read

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit (optional, least-privilege hygiene): consider scoping this to the verify-pr-title job (jobs.verify-pr-title.permissions.pull-requests: read) rather than top-level. Equivalent today with a single reusable-workflow job, but job-level scoping keeps the grant from silently extending to any future job added to this workflow. The pull-requests: read value itself is exactly right.


jobs:
verify-pr-title:
Expand Down
Loading