We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 246cedc commit 8f1461dCopy full SHA for 8f1461d
1 file changed
.github/workflows/release-pr.yml
@@ -21,11 +21,12 @@ jobs:
21
id: create-pr
22
env:
23
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
+ ACTOR: ${{ github.actor }}
25
run: |
26
TAG="${GITHUB_REF##*/}"
27
TITLE="Release ${TAG}"
28
BODY="Automated PR. Will trigger the ${TAG} release when approved."
29
LABEL=release
- ASSIGNEE=${{ github.actor }}
30
+ ASSIGNEE="${ACTOR}"
31
gh pr create --title "${TITLE}" --body "${BODY}" --label "${LABEL}" --assignee "${ASSIGNEE}" ||
32
gh pr edit --title "${TITLE}" --body "${BODY}" --add-label "${LABEL}"
0 commit comments