-
Notifications
You must be signed in to change notification settings - Fork 32
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
Showing
6 changed files
with
835 additions
and
313 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ on: | |
push: | ||
# Sequence of patterns matched against refs/tags | ||
tags: | ||
- 'v*' # Push events to matching v*, i.e. v1.0, v4.3.0 | ||
- 'v*' # Push events to matching v*, i.e. v1.0, v4.3.1 | ||
|
||
jobs: | ||
release: | ||
|
@@ -14,7 +14,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
- name: Generate changelog | ||
id: changelog | ||
uses: metcalfc/[email protected].0 | ||
uses: metcalfc/[email protected].1 | ||
with: | ||
myToken: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Create Release | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ This Action returns a markdown formatted changelog between two git references. T | |
|
||
I just wanted a simple way to populate the body of a GitHub Release. | ||
|
||
<a href="https://github.com/metcalfc/changelog-generator/releases/tag/v4.3.0"><img alt="Example Release Notes" src="./release-notes.png" width="400"></a> | ||
<a href="https://github.com/metcalfc/changelog-generator/releases/tag/v4.3.1"><img alt="Example Release Notes" src="./release-notes.png" width="400"></a> | ||
|
||
## Inputs | ||
|
||
|
@@ -47,7 +47,7 @@ First you will need to generate the changelog itself. To get the changelog betwe | |
```yaml | ||
- name: Generate changelog | ||
id: changelog | ||
uses: metcalfc/[email protected].0 | ||
uses: metcalfc/[email protected].1 | ||
with: | ||
myToken: ${{ secrets.GITHUB_TOKEN }} | ||
``` | ||
|
@@ -57,7 +57,7 @@ Or, if you have two specific references you want: | |
```yaml | ||
- name: Generate changelog | ||
id: changelog | ||
uses: metcalfc/[email protected].0 | ||
uses: metcalfc/[email protected].1 | ||
with: | ||
myToken: ${{ secrets.GITHUB_TOKEN }} | ||
head-ref: 'v0.0.2' | ||
|
@@ -75,11 +75,11 @@ If you want to point to a branch containing forward slashes (https://github.com/ | |
|
||
- name: Generate changelog | ||
id: changelog | ||
uses: metcalfc/[email protected].0 #TODO: bump this after release | ||
uses: metcalfc/[email protected].1 #TODO: bump this after release | ||
with: | ||
myToken: ${{ secrets.GITHUB_TOKEN }} | ||
head-ref: 'origin/my/branch/with/slashes' #add 'origin/` in front of your branch name | ||
base-ref: 'v4.3.0' | ||
base-ref: 'v4.3.1' | ||
fetch: false | ||
``` | ||
|
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
Oops, something went wrong.