-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c8e54c4
commit 6c0b81f
Showing
3 changed files
with
59 additions
and
7 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,57 @@ | ||
--- | ||
name-template: "v$RESOLVED_VERSION" | ||
tag-template: "v$RESOLVED_VERSION" | ||
change-template: "- $TITLE @$AUTHOR (#$NUMBER)" | ||
sort-direction: ascending | ||
|
||
categories: | ||
- title: "🚨 Breaking changes" | ||
labels: | ||
- "breaking-change" | ||
- title: "✨ New features" | ||
labels: | ||
- "new-feature" | ||
- title: "🐛 Bug fixes" | ||
labels: | ||
- "bugfix" | ||
- title: "🚀 Enhancements" | ||
labels: | ||
- "enhancement" | ||
- "refactor" | ||
- "performance" | ||
- title: "🧰 Maintenance" | ||
labels: | ||
- "maintenance" | ||
- "ci" | ||
- title: "📚 Documentation" | ||
labels: | ||
- "documentation" | ||
- title: "⬆️ Dependency updates" | ||
labels: | ||
- "dependencies" | ||
|
||
version-resolver: | ||
major: | ||
labels: | ||
- "major" | ||
- "breaking-change" | ||
minor: | ||
labels: | ||
- "minor" | ||
- "new-feature" | ||
patch: | ||
labels: | ||
- "bugfix" | ||
- "chore" | ||
- "ci" | ||
- "dependencies" | ||
- "documentation" | ||
- "enhancement" | ||
- "performance" | ||
- "refactor" | ||
default: patch | ||
|
||
template: | | ||
## What’s changed | ||
$CHANGES |
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 |
---|---|---|
|
@@ -139,13 +139,11 @@ jobs: | |
uses: docker/[email protected] | ||
- name: 🏗 Set up Docker Buildx | ||
uses: docker/[email protected] | ||
- name: 🏗 Set up CodeNotary | ||
run: bash <(curl https://getvcn.codenotary.com -L) | ||
- name: ℹ️ Compose build flags | ||
id: flags | ||
run: | | ||
echo "::set-output name=date::$(date +"%Y-%m-%dT%H:%M:%SZ")" | ||
from=$(jq --raw-output ".build_from.${{ matrix.architecture }}" "${{ needs.information.outputs.build }}") | ||
from=$(yq --no-colors eval ".build_from.${{ matrix.architecture }}" "${{ needs.information.outputs.build }}") | ||
echo "::set-output name=from::${from}" | ||
if [[ "${{ matrix.architecture}}" = "amd64" ]]; then | ||
|
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 |
---|---|---|
|
@@ -82,15 +82,12 @@ jobs: | |
uses: docker/[email protected] | ||
- name: 🏗 Set up Docker Buildx | ||
uses: docker/[email protected] | ||
- name: 🏗 Set up CodeNotary | ||
run: bash <(curl https://getvcn.codenotary.com -L) | ||
- name: ℹ️ Compose build flags | ||
id: flags | ||
run: | | ||
echo "::set-output name=date::$(date +"%Y-%m-%dT%H:%M:%SZ")" | ||
from=$(jq --raw-output ".build_from.${{ matrix.architecture }}" "${{ needs.information.outputs.build }}") | ||
from=$(yq --no-colors eval ".build_from.${{ matrix.architecture }}" "${{ needs.information.outputs.build }}") | ||
echo "::set-output name=from::${from}" | ||
if [[ "${{ matrix.architecture}}" = "amd64" ]]; then | ||
echo "::set-output name=platform::linux/amd64" | ||
elif [[ "${{ matrix.architecture }}" = "i386" ]]; then | ||
|