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
3 changes: 3 additions & 0 deletions .github/workflows/cron-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ env:
HOMEBREW_NO_INSTALL_CLEANUP: 1 # Disable cleanup for homebrew, we don't need it on CI
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

permissions:
contents: read

Comment thread
peter-matkovski marked this conversation as resolved.
jobs:
build-and-test:
name: Test LLC
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:

workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
merge-release-to-main:
name: Merge release to main
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: "Publish new release"
on:
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
release:
name: Publish new release
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-start.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
type: string
required: true

permissions:
contents: write
pull-requests: write

jobs:
test-release:
name: Start new release
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/sdk-size-metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ on:
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1 # Disable cleanup for homebrew, we don't need it on CI

permissions:
actions: write
contents: read
pull-requests: read

Comment thread
peter-matkovski marked this conversation as resolved.
jobs:
sdk_size:
name: Metrics
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/smoke-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_PR_NUM: ${{ github.event.pull_request.number }}

permissions:
contents: read
pull-requests: write

Comment thread
peter-matkovski marked this conversation as resolved.
jobs:
guard:
name: Guard
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ concurrency:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

permissions:
actions: read
contents: read

Comment thread
peter-matkovski marked this conversation as resolved.
jobs:
sonar:
runs-on: macos-15
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ on:
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1

permissions:
contents: read
pull-requests: write

jobs:
deploy:
runs-on: macos-15
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/update-copyright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
env:
HOMEBREW_NO_INSTALL_CLEANUP: 1 # Disable cleanup for homebrew, we don't need it on CI

permissions:
contents: write
pull-requests: write

jobs:
copyright:
name: Copyright
Expand Down
Loading