Skip to content

Commit db44c91

Browse files
chore: fix permissions to update checks
1 parent 04b8671 commit db44c91

File tree

8 files changed

+27
-0
lines changed

8 files changed

+27
-0
lines changed

.github/workflows/apix-ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ on:
2626

2727
workflow_dispatch:
2828

29+
permissions:
30+
checks: write
31+
2932
env:
3033
TS_JUNIT_OUTPUT_DIR: results/apix
3134

.github/workflows/codegen-ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ on:
2222

2323
workflow_dispatch:
2424

25+
permissions:
26+
checks: write
27+
2528
env:
2629
LOOKERSDK_BASE_URL: https://localhost:20000
2730
LOOKERSDK_VERIFY_SSL: false

.github/workflows/go-ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ on:
1414

1515
workflow_dispatch:
1616

17+
permissions:
18+
checks: write
19+
1720
env:
1821
LOOKERSDK_BASE_URL: https://localhost:20000
1922
LOOKERSDK_VERIFY_SSL: false

.github/workflows/hackathon-ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ on:
2020

2121
workflow_dispatch:
2222

23+
permissions:
24+
checks: write
25+
2326
env:
2427
TS_JUNIT_OUTPUT_DIR: results/hackathon
2528

.github/workflows/kotlin-ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ on:
1919
- kotlin/**
2020
- .github/workflows/gradle.yml
2121

22+
permissions:
23+
checks: write
24+
2225
# TODO(#1544): Also run tests
2326
jobs:
2427
build:

.github/workflows/python-ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ env:
2323
LOOKERSDK_VERIFY_SSL: false
2424
TOX_JUNIT_OUTPUT_DIR: results
2525

26+
permissions:
27+
checks: write
28+
2629
jobs:
2730
setup:
2831
uses: looker-open-source/reusable-actions/.github/workflows/supported-versions.yml@main

.github/workflows/resources-ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ defaults:
2121
shell: bash
2222
working-directory: bin/looker-resources-index
2323

24+
permissions:
25+
checks: write
26+
2427
jobs:
2528
analyzebuild:
2629
name: Analyze and Build

.github/workflows/tssdk-ci.yml

+6
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,17 @@ on:
2828

2929
workflow_dispatch:
3030

31+
permissions:
32+
checks: write
33+
3134
env:
3235
LOOKERSDK_BASE_URL: https://localhost:20000
3336
LOOKERSDK_VERIFY_SSL: false
3437
TS_JUNIT_OUTPUT_DIR: results/tssdk
3538

39+
permissions:
40+
checks: write
41+
3642
jobs:
3743
unit:
3844
name: Unit - ${{ matrix.os }} / Node ${{ matrix.node-version }}

0 commit comments

Comments
 (0)