Skip to content

Commit e70a132

Browse files
authored
Create nextrelease.yml
1 parent 1d793c7 commit e70a132

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/nextrelease.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: nextrelease
2+
on:
3+
push:
4+
branches: [master]
5+
pull_request:
6+
branches: [master]
7+
types: [labeled, unlabeled, edited, synchronize]
8+
9+
jobs:
10+
sync:
11+
if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' && github.head_ref == 'nextrelease' }}
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
with:
16+
fetch-depth: 0 # all branches and tags
17+
- uses: dropseed/nextrelease@v1
18+
with:
19+
github_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)