Skip to content

Commit

Permalink
Merge pull request #190 from masutaka/fix-ci-trigger-of-release-pr
Browse files Browse the repository at this point in the history
Fix missing CI trigger of Release PR
  • Loading branch information
masutaka authored Jul 5, 2024
2 parents 561204d + 6d27381 commit 1256b62
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,17 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.CI_APP_ID }}
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}
- id: run-tagpr
uses: Songmu/tagpr@0a9b8e6634db66e773516828c1359dc6e9e8b484 # v1.3.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
outputs:
tagpr-tag: ${{ steps.run-tagpr.outputs.tag }}
release:
Expand Down

0 comments on commit 1256b62

Please sign in to comment.