Skip to content

Commit

Permalink
File sync from s4u/.github
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Action committed Dec 28, 2020
1 parent 680c134 commit 6c5b3aa
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ categories:
- 'bug'

- title: 'Maintenance'
label:
labels:
- 'code quality'
- 'documentation'

- title: 'Dependency updates'
label:
labels:
- 'dependencies'

change-template: '- $TITLE #$NUMBER'
Expand Down
21 changes: 18 additions & 3 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,30 @@ name: Release Drafter

on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- master
- 'master'
tags:
- 'v*'

jobs:
update_release_draft:
name: Update Release Draft
runs-on: ubuntu-latest
if: >
github.repository_owner == 's4u'
&& (startsWith(github.ref, 'refs/tags/') || !startsWith(github.event.head_commit.message , '[maven-release-plugin]'))
steps:
- uses: release-drafter/[email protected]
- id: is-tag
run: |
echo "::set-output name=name::${GITHUB_REF#refs/tags/}"
echo "::set-output name=tag::true"
if: github.repository_owner == 's4u' && startsWith(github.ref, 'refs/tags/')

- uses: release-drafter/[email protected]
with:
publish: ${{ steps.is-tag.outputs.tag }}
name: ${{ steps.is-tag.outputs.name }}
tag: ${{ steps.is-tag.outputs.name }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 6c5b3aa

Please sign in to comment.