Skip to content

Commit

Permalink
Add gh token to release-pr (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwtyler authored Dec 21, 2023
1 parent 0c95ee1 commit 8a84d1b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion release-pr/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ inputs:
# git_author_username:
# required: false
# default: "Pantheon Automation"
gh_token:
description: "The GitHub token to use for authentication."
required: true
readme_md: # to avoid case sensitivty issues when getting the current version out of readme
required: false
default: "README.MD"
Expand All @@ -24,4 +27,6 @@ runs:
steps:
- name: Draft Release PR
shell: bash
run: bash ${{ github.action_path }}/release-pr.sh ${{ inputs.readme_md }}
run: bash ${{ github.action_path }}/release-pr.sh ${{ inputs.readme_md }}
env:
GH_TOKEN: ${{ inputs.gh_token }}

0 comments on commit 8a84d1b

Please sign in to comment.