From 5eebcfe31bd78be3271996abeeac8d13acbf620c Mon Sep 17 00:00:00 2001 From: Pat Heard Date: Mon, 18 Nov 2024 11:58:21 -0500 Subject: [PATCH] fix: Glue sync job PR create step Update the Glue sync job workflow so that the GitHub CLI has the GitHub Token in scope. This allows it to authenticate and create the PR. --- .github/workflows/glue_job_sync.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/glue_job_sync.yml b/.github/workflows/glue_job_sync.yml index aca845f..fedf8e9 100644 --- a/.github/workflows/glue_job_sync.yml +++ b/.github/workflows/glue_job_sync.yml @@ -29,4 +29,6 @@ jobs: run: ./.github/workflows/scripts/get-glue-jobs.sh - name: Create PR if changes + env: + GH_TOKEN: ${{ github.token }} run: ./.github/workflows/scripts/sync-glue-jobs.sh