Skip to content

Commit

Permalink
Merge pull request #15 from hatena/tagpr
Browse files Browse the repository at this point in the history
Add GitHub Workflow for tagpr
  • Loading branch information
stefafafan authored Oct 15, 2023
2 parents 1d4a287 + 88564e6 commit 53964ee
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release with tagpr

on:
push:
branches: ["main"]

jobs:
tagpr:
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
- uses: actions/checkout@v4
- uses: Songmu/tagpr@v1
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}

0 comments on commit 53964ee

Please sign in to comment.