Skip to content

Commit

Permalink
ci: Add tagpr action
Browse files Browse the repository at this point in the history
Creates pull requests on changes that can be merged to make a release
  • Loading branch information
gteufelberger committed May 3, 2024
1 parent ffc6a1e commit 1eaf1d8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/tagpr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# .github/workflows/tagpr.yml
name: tagpr
on:
push:
branches: ["main"]

jobs:
tagpr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Songmu/tagpr@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1eaf1d8

Please sign in to comment.