Skip to content

Commit

Permalink
Merge pull request #25 from hatena/add-tagpr
Browse files Browse the repository at this point in the history
tagprを導入
  • Loading branch information
halkt committed Oct 27, 2023
2 parents 633ce40 + 45a6ef5 commit db58f9e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/_release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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
with:
token: ${{ steps.app-token.outputs.token }}
- uses: Songmu/tagpr@v1
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}

0 comments on commit db58f9e

Please sign in to comment.