-
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.
Signed-off-by: Mateusz Urbanek <[email protected]>
- Loading branch information
Showing
8 changed files
with
41 additions
and
37 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
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 |
---|---|---|
|
@@ -17,25 +17,15 @@ jobs: | |
name: Generate changelog and publish a release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check if this is full release | ||
id: check-tag | ||
run: | | ||
regex='^(v)(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$' | ||
if echo ${{ github.ref_name }} | grep -qE $regex ; then | ||
echo "match=true" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Checkout Code | ||
if: steps.check-tag.outputs.match == 'true' | ||
uses: actions/checkout@v3 | ||
- name: Update CHANGELOG | ||
id: changelog | ||
if: steps.check-tag.outputs.match == 'true' | ||
uses: requarks/changelog-action@v1 | ||
with: | ||
token: ${{ github.token }} | ||
tag: ${{ github.ref_name }} | ||
- name: Create Release | ||
if: steps.check-tag.outputs.match == 'true' | ||
uses: ncipollo/[email protected] | ||
with: | ||
allowUpdates: true | ||
|
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
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,5 +1,13 @@ | ||
# must | ||
|
||
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg)](CODE_OF_CONDUCT.md) | ||
[![GitHub](https://img.shields.io/github/license/doomshrine/must)](LICENSE.txt) | ||
[![Go Report Card](https://goreportcard.com/badge/github.com/doomshrine/must)](https://goreportcard.com/report/github.com/doomshrine/must) | ||
[![codecov](https://codecov.io/gh/doomshrine/must/branch/main/graph/badge.svg?token=6MH0T7CI24)](https://codecov.io/gh/doomshrine/must) | ||
[![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/doomshrine/must/tests.yaml)](https://github.com/shanduur/must/actions/workflows/tests.yaml) | ||
|
||
`must` is a dead simple library that includes (for now) single function - Do. | ||
|
||
## Contributing | ||
|
||
You want to contibute? Hop into the [CONTRIBUTING.md](CONTRIBUTING.md) and find how you can help the project! |
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 |
---|---|---|
|
@@ -3,5 +3,6 @@ | |
"extends": [ | ||
"config:base" | ||
], | ||
"automerge": true | ||
"automerge": true, | ||
"labels": [ "area/dependency" ] | ||
} |