Skip to content
Merged
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
15 changes: 10 additions & 5 deletions .github/workflows/kotlin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:
# to be triggered again.
- name: Generate App Token
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2
if: ${{ vars.APP_ID != '' }}
id: app-token
with:
app-id: ${{ vars.APP_ID }}
Expand All @@ -62,7 +63,7 @@ jobs:
check-task: connectedCheckShardMatrixYamlCheck checkVersionIsSnapshot
fix-task: connectedCheckShardMatrixYamlUpdate checkVersionIsSnapshot
write-cache-key: build-logic
access-token: ${{ steps.app-token.outputs.token }}
access-token: ${{ steps.app-token.outputs.token || '' }}

artifacts-check:
name: ArtifactsCheck
Expand All @@ -75,6 +76,7 @@ jobs:
# to be triggered again.
- name: Generate App Token
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2
if: ${{ vars.APP_ID != '' }}
id: app-token
with:
app-id: ${{ vars.APP_ID }}
Expand All @@ -86,7 +88,7 @@ jobs:
check-task: artifactsCheck
fix-task: artifactsDump
write-cache-key: build-logic
access-token: ${{ steps.app-token.outputs.token }}
access-token: ${{ steps.app-token.outputs.token || '' }}

dependency-guard:
name: Dependency Guard
Expand All @@ -98,6 +100,7 @@ jobs:
# to be triggered again.
- name: Generate App Token
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2
if: ${{ vars.APP_ID != '' }}
id: app-token
with:
app-id: ${{ vars.APP_ID }}
Expand All @@ -111,7 +114,7 @@ jobs:
check-task: dependencyGuard --refresh-dependencies
fix-task: dependencyGuardBaseline --refresh-dependencies
write-cache-key: build-logic
access-token: ${{ steps.app-token.outputs.token }}
access-token: ${{ steps.app-token.outputs.token || '' }}

ktlint:
name: KtLint
Expand All @@ -123,6 +126,7 @@ jobs:
# to be triggered again.
- name: Generate App Token
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2
if: ${{ vars.APP_ID != '' }}
id: app-token
with:
app-id: ${{ vars.APP_ID }}
Expand All @@ -136,7 +140,7 @@ jobs:
check-task: ktLintCheck
fix-task: ktLintFormat
write-cache-key: build-logic
access-token: ${{ steps.app-token.outputs.token }}
access-token: ${{ steps.app-token.outputs.token || '' }}

api-check:
name: Api check
Expand All @@ -148,6 +152,7 @@ jobs:
# to be triggered again.
- name: Generate App Token
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2
if: ${{ vars.APP_ID != '' }}
id: app-token
with:
app-id: ${{ vars.APP_ID }}
Expand All @@ -161,7 +166,7 @@ jobs:
check-task: apiCheck
fix-task: apiDump
write-cache-key: build-logic
access-token: ${{ steps.app-token.outputs.token }}
access-token: ${{ steps.app-token.outputs.token || '' }}

android-lint:
name: Android Lint
Expand Down
Loading