Skip to content

Commit 36cc262

Browse files
authored
Fix jira-release-sync.yml workflow by ensuring that the plugin triggering the workflow (in android-release.yml) (#301)
is using CI_GITHUB_ACCESS_TOKEN rather than GITHUB_TOKEN which, according to the github docs, cannot trigger other workflows.
1 parent a297930 commit 36cc262

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/android-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
- name: Create GitHub release
2121
uses: softprops/action-gh-release@v2
2222
env:
23-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2423
RELEASE_NOTES_PATH: ${{ env.RELEASE_NOTES_PATH }}
2524
TAG_NAME: ${{ env.TAG_NAME }}
2625
VERSION_NUM: ${{ env.VERSION_NUM }}
2726
with:
27+
token: ${{ secrets.CI_GITHUB_ACCESS_TOKEN }}
2828
tag_name: ${{ env.TAG_NAME }}
2929
name: ${{ env.VERSION_NUM }}
3030
body_path: ${{ env.RELEASE_NOTES_PATH }}

0 commit comments

Comments
 (0)