-
-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Track changes between releases (#1238)
- Loading branch information
1 parent
770621b
commit 956e0c7
Showing
2 changed files
with
27 additions
and
0 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,6 @@ | ||
template: | | ||
## What’s Changed | ||
$CHANGES | ||
exclude-labels: | ||
- 'generate chapters' |
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,21 @@ | ||
###################################### | ||
## Custom Web Almanac GitHub action ## | ||
###################################### | ||
# | ||
# This updates the current draft release notes with this commit | ||
# Excluding certain automated commits (e.g. Generate Chapters or Ebooks) | ||
# | ||
name: Add to Release Notes | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
release-notes: | ||
runs-on: ubuntu-latest | ||
if: github.repository == 'HTTPArchive/almanac.httparchive.org' | ||
steps: | ||
- name: Update release notes | ||
uses: release-drafter/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |