Skip to content

Commit

Permalink
Merge pull request #16 from reviewdog/update-workflow
Browse files Browse the repository at this point in the history
Add bumpr label check flow
  • Loading branch information
haya14busa authored May 31, 2020
2 parents f79554f + d504926 commit 59be6da
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ on:
- master
tags:
- 'v*.*.*'
pull_request:
types:
- labeled

jobs:
release:
if: github.event.action != 'labeled'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -45,3 +49,11 @@ jobs:
body: ${{ steps.bumpr.outputs.message }}
draft: false
prerelease: false

release-check:
if: github.event.action == 'labeled'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Post bumpr status comment
uses: haya14busa/action-bumpr@v1

0 comments on commit 59be6da

Please sign in to comment.