From 745db0c6f631099c54119d8b8358bc7d4dd3c94d Mon Sep 17 00:00:00 2001 From: JJ Fullmer Date: Mon, 5 Aug 2024 10:51:22 -0600 Subject: [PATCH] Use gh token Include the gh token --- .github/workflows/stable-releases.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/stable-releases.yml b/.github/workflows/stable-releases.yml index 6ed3ca48cf..c823917a62 100644 --- a/.github/workflows/stable-releases.yml +++ b/.github/workflows/stable-releases.yml @@ -8,6 +8,8 @@ jobs: steps: - name: clone repo, cd into it, and fetch all run: gh repo clone FOGProject/fogproject && cd fogproject && git fetch --all + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: create pull request run: gh pr create -B stable -H dev-branch --title 'Monthly Release PR' --body 'Created by Github action' env: