Skip to content

Commit

Permalink
Merge release/1.0.0 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored May 24, 2020
2 parents 2e16aec + 5c0ea60 commit 4225579
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: "build-test"
name: "merge-test"
on: # merge release branch when pushed
pull_request:
push:
branches:
- 'release-*'
- 'release/*'

jobs:
test:
Expand All @@ -18,7 +18,7 @@ jobs:
shell: bash
run: |
branch=${{ steps.extract_branch.outputs.branch }}
echo "##[set-output name=tag;]$(echo ${branch#release-})"
echo "##[set-output name=tag;]$(echo ${branch#release/})"
id: extract_tag
- uses: ./
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This action merge specified branch to develop and master.
shell: bash
run: |
branch=${{ steps.extract_branch.outputs.branch }}
echo "##[set-output name=tag;]$(echo ${branch#release-})"
echo "##[set-output name=tag;]$(echo ${branch#release/})"
id: extract_tag
- uses: ./
with:
Expand Down
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ inputs:
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: "git-merge"
color: "black"

0 comments on commit 4225579

Please sign in to comment.