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/deploy-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ concurrency:
group: "pages"
cancel-in-progress: false

permissions:
contents: read

jobs:

deploy-docs:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:

permissions:
contents: read
pull-requests: write

# Cancel the workflow if any new changes pushed to a feature branch or the trunk
concurrency:
Expand All @@ -27,6 +26,9 @@ jobs:

integration:
needs: label-check
permissions:
contents: read
pull-requests: write
runs-on: solx-linux-amd64
container:
image: ghcr.io/matter-labs/zksync-llvm-runner@sha256:adcadcafaa4e6604837f6608b7b5628ae429c05f0ddf56ab4e809477721f39e4
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ on:

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

Comment thread
nebasuke marked this conversation as resolved.
# Cancel the workflow if any new changes pushed to a feature branch or the trunk
concurrency:
Expand All @@ -25,6 +23,7 @@ jobs:
changes:
runs-on: ubuntu-24.04
permissions:
contents: read
pull-requests: read
outputs:
code: ${{ steps.filter.outputs.code }}
Expand Down Expand Up @@ -77,6 +76,9 @@ jobs:
build-and-test:
needs: changes
if: needs.changes.outputs.code == 'true'
permissions:
contents: read
checks: write
strategy:
fail-fast: false # finalize testing of all targets even if one failed
matrix:
Expand Down Expand Up @@ -176,6 +178,9 @@ jobs:
# Run tests with address sanitizer (label-gated)
sanitizer:
if: contains(github.event.pull_request.labels.*.name, 'ci:sanitizer') && !github.event.pull_request.head.repo.fork
permissions:
contents: read
checks: write
runs-on: solx-linux-amd64
container:
image: ghcr.io/matter-labs/zksync-llvm-runner@sha256:adcadcafaa4e6604837f6608b7b5628ae429c05f0ddf56ab4e809477721f39e4
Expand Down
Loading