Skip to content
Open
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
7 changes: 7 additions & 0 deletions .github/workflows/changesets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,17 @@ on:
branches:
- main

permissions:
contents: read

jobs:
changesets:
name: Changesets
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
actions: write
steps:
# Checkout this repository
- name: Checkout Repo
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- main
pull_request:

permissions:
contents: read

jobs:
contracts_run_ts_tests:
name: Run Typescript Tests
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- main
pull_request:

permissions:
contents: read

jobs:
run_examples_tests:
name: Run Tests
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: golangci_lint
on:
push:

permissions:
contents: read

jobs:
golangci-lint-version:
name: Get golangci-lint version to from nix
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/integration-tests-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
branches:
- develop

permissions:
contents: read

env:
ECR_TAG: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com/chainlink-starknet-tests:develop

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/integration-tests-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ concurrency:
group: integration-tests-starknet-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

env:
# for PR builds, ${{ github.sha }} is the temporary merge commit, we want the head commit instead
SN_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/integration-tests-soak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ on:
required: true
type: string

permissions:
contents: read

env:
TEST_LOG_LEVEL: debug
CL_ECR: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.QA_AWS_REGION }}.amazonaws.com/chainlink
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/integration_gauntlet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- main
pull_request:

permissions:
contents: read

jobs:
gauntlet_eslint:
name: Gauntlet ESLint
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- main
pull_request:

permissions:
contents: read

jobs:
lint_format_check:
name: Format Check
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/monitoring-build-push-ecr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
- monitoring/**
- relayer/**

permissions:
contents: read

jobs:
build-and-publish-monitoring:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/relayer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- main
pull_request:

permissions:
contents: read

jobs:
relayer_run_unit_tests:
name: Run Unit Tests ${{ matrix.test-type.name }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release/starknet-gauntlet-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@ name: Starknet Gauntlet CLI Release
on:
workflow_dispatch:

permissions:
contents: read

jobs:
starknet-gauntlet-cli-release:
name: Starknet Gauntlet CLI Release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
# Checkout this repository
- name: Checkout Repo
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release/starknet-relayer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@ name: Starknet Relayer Release
on:
workflow_dispatch:

permissions:
contents: read

jobs:
starknet-relayer-release:
name: Release Starknet Relayer
runs-on: ubuntu-latest
permissions:
contents: write
steps:
# Checkout this repository
- name: Checkout Repo
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/sonar-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: SonarQube Scan
on:
pull_request:

permissions:
contents: read

jobs:
wait_for_workflows:
name: Wait for workflows
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- main
pull_request:

permissions:
contents: read

jobs:
zizmor_analyzer:
name: Zizmor
Expand Down
Loading