Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
schedule:
- cron: "0 0 * * *"

permissions:
contents: read
issues: write

jobs:
security_audit:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/on-pr-review-approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ on:
pull_request_review:
types: [submitted]

permissions:
contents: read
pull-requests: write

jobs:
update-labels:
if: github.event.review.state == 'approved'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/on-pr-review-submit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ on:
pull_request_review:
types: [submitted]

permissions:
contents: read
pull-requests: write

jobs:
update-labels:
if: github.event.review.state == 'changes_requested'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tag-merged-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
- master
types: [closed]

permissions:
contents: read
pull-requests: write

jobs:
update-labels:
if: ${{ github.event.pull_request.merged }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tag-new-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
- master
types: [opened, reopened, review_requested]

permissions:
contents: read
pull-requests: write

jobs:
update-labels:
runs-on: ubuntu-latest
Expand Down
Loading