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
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,8 @@ jobs:
needs: [build-ubuntu-docker, build-flatpak, build]
runs-on: ubuntu-latest
if: (github.event_name == 'push' && github.ref == 'refs/heads/chatterino7')
permissions:
contents: write # create release

steps:
- uses: actions/checkout@v6
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/create-installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
env:
# same as in build.yml
C2_ARCH: ${{ case(endsWith(matrix.os, '-arm'), 'arm', 'x86-64') }}
permissions:
# FIXME: this only needed for the nightly upload step (should split to another job)
contents: write
steps:
- uses: actions/checkout@v6
with:
Expand Down Expand Up @@ -112,6 +115,9 @@ jobs:
draft-release:
runs-on: ubuntu-latest
needs: [create-installer, check-release]
permissions:
# FIXME: this only needed for the last step (should split to another job)
contents: write
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/post-clang-tidy-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
runs-on: ubuntu-latest
# Only when a build succeeds
if: ${{ github.event.workflow_run.conclusion == 'success' }}
permissions:
pull-requests: write

steps:
- uses: ZedThree/clang-tidy-review/post@v0.23.0
Expand Down
Loading