Skip to content

Commit 4051bdc

Browse files
committed
try wrapping in quotes
1 parent 7bb5565 commit 4051bdc

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/actions/merge-main/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ description: Merges main into feature branches (*-main)
33
inputs:
44
exempt-branches:
55
description: Feature branches that are exempt from receiving merges from main (comma separated, no blank space)
6+
ci-user-pat:
7+
description: The CI user's personal access token to write to the repo
68

79
runs:
810
using: composite
@@ -11,7 +13,7 @@ runs:
1113
uses: actions/checkout@v4
1214
with:
1315
fetch-depth: 0
14-
token: ${{ secrets.CI_USER_PAT }}
16+
token: '${{ secrets.CI_USER_PAT }}'
1517

1618
- name: Set up Git
1719
shell: bash

.github/workflows/merge-main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ jobs:
1212
- name: Merge main
1313
uses: awslabs/aws-kotlin-repo-tools/.github/actions/merge-main@fix-auto-merge-credentials
1414
with:
15+
ci-user-pat: ${{ secrets.CI_USER_PAT }}
1516
exempt-branches: # Add any if required

0 commit comments

Comments
 (0)