generated from kyma-project/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 17
Generate release notes #894
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 12 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
afcbb67
this is test file
ijovovic 54f858e
generate release notes workflow
ijovovic 6afb800
gren generate release notes
ijovovic 6686fad
remove test file
ijovovic 0c7ef69
replace gh token with the default one
ijovovic 5dd7a24
fix the milestone name and github token ref
ijovovic 3242aa8
Merge branch 'main' into generate_release_notes
ijovovic 38faf48
Merge branch 'main' into generate_release_notes
ijovovic 8722b27
Update .github/workflows/.grenrc.json
ijovovic c8a195f
Update .github/workflows/create-release-notes.yaml
ijovovic 8f1a45e
fix the milestoneMatch patern, remove uneeded params from command line
ijovovic aaa14d3
Merge branch 'main' into generate_release_notes
ijovovic 87c5de7
Update .github/workflows/create-release-notes.yaml
ijovovic e312eee
Merge branch 'main' into generate_release_notes
ijovovic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
{ | ||
"dataSource": "milestones", | ||
"prefix": "", | ||
"groupBy": { | ||
":fire: Enhancements:": ["kind/feature"], | ||
":bug: Bug fixes:": ["kind/bug"] | ||
}, | ||
"milestoneMatch": "{{tag_name}}", | ||
"changelogFilename": "CHANGELOG.md" | ||
} |
This file contains hidden or 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,26 @@ | ||
name: Generate Release Notes | ||
|
||
on: | ||
push: | ||
tags: | ||
- "*" # Triggers on any tag creation | ||
|
||
jobs: | ||
generate-release-notes: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
|
||
- name: Install github-release-notes | ||
run: npm install -g github-release-notes | ||
|
||
- name: Generate release notes | ||
env: | ||
GREN_GITHUB_TOKEN: ${{ github.token }} | ||
run: | | ||
gren release --data-source=milestones --override |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.