Skip to content

Commit d0237a9

Browse files
authored
fix workflow in private repo (#154)
1 parent a96fac1 commit d0237a9

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/actions/changelog-verification/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ runs:
66
steps:
77
- name: Checkout sources
88
uses: actions/checkout@v4
9-
9+
with:
10+
token: ${{ secrets.CI_USER_PAT }}
11+
fetch-depth: 0
1012
- name: Setup kat
1113
uses: aws/aws-kotlin-repo-tools/.github/actions/setup-kat@main
1214

.github/actions/minor-version-bump/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ runs:
55
steps:
66
- name: Checkout repository
77
uses: actions/checkout@v4
8-
8+
with:
9+
token: ${{ secrets.CI_USER_PAT }}
10+
fetch-depth: 0
911
- name: Configure Gradle
1012
uses: awslabs/aws-kotlin-repo-tools/.github/actions/configure-gradle@main
1113

0 commit comments

Comments
 (0)