-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #194 from CellProfiling/0.7.4
0.7.4
- Loading branch information
Showing
9 changed files
with
96 additions
and
51 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name-template: "$NEXT_PATCH_VERSION 🌈" | ||
tag-template: "$NEXT_PATCH_VERSION" | ||
categories: | ||
- title: "Breaking changes:" | ||
labels: | ||
- "breaking change" | ||
template: | | ||
## Merged pull requests: | ||
$CHANGES |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Draft release | ||
|
||
on: | ||
push: | ||
# branches to consider in the event; optional, defaults to all | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
update-release-draft: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Drafts your next Release notes as Pull Requests are merged into "develop" | ||
- uses: release-drafter/release-drafter@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
name: Release | ||
|
||
on: | ||
pull_request: | ||
branches: [master] | ||
types: [closed] | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
build: | ||
|
@@ -26,31 +27,35 @@ jobs: | |
name: built-output | ||
path: ./dist | ||
|
||
release: | ||
generate_changelog: | ||
runs-on: ubuntu-latest | ||
if: github.event.pull_request.merged && startsWith(github.head_ref, 'rc') | ||
name: Generate changelog for default branch | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Tag and prepare release | ||
id: tag_and_prepare_release | ||
uses: K-Phoen/[email protected] | ||
with: | ||
ref: master | ||
|
||
- name: Generate changelog | ||
uses: charmixer/auto-changelog-action@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
release_branch: master | ||
tag_format: "%major%.%minor%.%patch%" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Upload release notes | ||
if: steps.tag_and_prepare_release.outputs.tag | ||
uses: Roang-zero1/[email protected] | ||
base: HISTORY.md | ||
since_tag: "0.7.0" | ||
|
||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v2 | ||
with: | ||
created_tag: ${{ steps.tag_and_prepare_release.outputs.tag }} | ||
update_existing: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
base: master | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: Update changelog | ||
title: Update changelog | ||
body: Update the changelog. This PR is created automatically after a new release. | ||
branch: update-changelog | ||
|
||
publish: | ||
runs-on: ubuntu-latest | ||
needs: [build, release] | ||
needs: [build] | ||
steps: | ||
- name: Load saved build output | ||
uses: actions/download-artifact@v1 | ||
|
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.7.3 | ||
0.7.4 |
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