chore: Bump version to 7.0.1-SNAPSHOT #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Changelog | |
on: | |
issues: | |
types: [closed,reopened] | |
push: | |
branches: | |
- '[1-9]+.[0-9]+.x' | |
- master | |
workflow_dispatch: | |
jobs: | |
release_notes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check if it has release drafter config file | |
id: check_release_drafter | |
run: | | |
has_release_drafter=$([ -f .github/release-drafter.yml ] && echo "true" || echo "false") | |
echo ::set-output name=has_release_drafter::${has_release_drafter} | |
# If it has release drafter: | |
- uses: release-drafter/[email protected] | |
if: steps.check_release_drafter.outputs.has_release_drafter == 'true' | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
with: | |
prerelease: false | |
commitish: master | |
# Otherwise: | |
- name: Export Gradle Properties | |
if: steps.check_release_drafter.outputs.has_release_drafter == 'false' | |
uses: micronaut-projects/github-actions/export-gradle-properties@master | |
- uses: micronaut-projects/github-actions/release-notes@master | |
if: steps.check_release_drafter.outputs.has_release_drafter == 'false' | |
id: release_notes | |
# with: | |
# token: ${{ secrets.GH_TOKEN }} | |
- uses: ncipollo/release-action@v1 | |
if: steps.check_release_drafter.outputs.has_release_drafter == 'false' && steps.release_notes.outputs.generated_changelog == 'true' | |
with: | |
allowUpdates: true | |
commit: ${{ steps.release_notes.outputs.current_branch }} | |
draft: true | |
name: ${{ env.title }} ${{ steps.release_notes.outputs.next_version }} | |
tag: v${{ steps.release_notes.outputs.next_version }} | |
bodyFile: CHANGELOG.md | |
# token: ${{ secrets.GH_TOKEN }} |