You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run: gh pr create --title "Bump version to ${{ steps.compute-next-version.outputs.next_version }}" --body "Bump version to ${{ steps.compute-next-version.outputs.next_version }}"
76
77
env:
77
-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
78
+
GH_TOKEN: ${{ secrets.CLI_ACTION_TOKEN }}
78
79
79
80
- name: Get PR number
80
81
id: get-pr-number
81
82
run: |
82
83
PR_NUMBER=$(gh pr list --head "${{ steps.branch.outputs.branch_name }}" --json number --jq '.[0].number')
83
84
echo "pr_number=$PR_NUMBER" >> $GITHUB_OUTPUT
84
85
env:
85
-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
86
+
GH_TOKEN: ${{ secrets.CLI_ACTION_TOKEN }}
86
87
87
-
- name: Comment PR with link and version
88
+
- name: Annotate workflow with PR link and version
0 commit comments