Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

workflows/triage: fix excessive-permissions zizmor error #195310

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 6 additions & 4 deletions .github/workflows/triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@ concurrency:
group: "triage-${{ github.event.number }}"
cancel-in-progress: true

permissions:
contents: read
pull-requests: write

jobs:
limit-pull-requests:
if: >
always() && github.repository_owner == 'Homebrew' &&
(github.event_name == 'pull_request_target' &&
github.event.action == 'opened')
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: Homebrew/actions/limit-pull-requests@master
with:
Expand All @@ -31,6 +30,9 @@ jobs:

triage:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
Comment on lines +33 to +35
Copy link
Member Author

Choose a reason for hiding this comment

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

Should this have the statuses: write permission like the triage job in homebrew/core?

steps:
- name: Check commit format
uses: Homebrew/actions/check-commit-format@master
Expand Down
Loading