Skip to content

Commit

Permalink
Use another API token to get around permission issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jpelgrom committed Aug 1, 2023
1 parent 99e749c commit 4f905fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/actions/create-release-notes/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ inputs:
required: true
gh-token:
description: 'The GitHub token used to get details from the API'
required: false
default: ${{ github.token }}
required: true
runs:
using: 'composite'
steps:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/onPush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
name: Create Release Notes
with:
tag-name: ${{ steps.rel_number.outputs.version }}
gh-token: ${{ secrets.TAG_PUSH_TOKEN }}

- uses: ./.github/actions/download-translations
name: Download Translations
Expand Down Expand Up @@ -161,6 +162,7 @@ jobs:
name: Create Release Notes
with:
tag-name: ${{ steps.rel_number.outputs.version }}
gh-token: ${{ secrets.TAG_PUSH_TOKEN }}

- uses: ./.github/actions/download-translations
name: Download Translations
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ jobs:
name: Create Release Notes
with:
tag-name: ${{ steps.rel_number.outputs.version }}
gh-token: ${{ secrets.TAG_PUSH_TOKEN }}

- name: Build Debug APK
run: ./gradlew assembleDebug
Expand Down

0 comments on commit 4f905fb

Please sign in to comment.