Skip to content

Commit

Permalink
Track changes between releases (#1238)
Browse files Browse the repository at this point in the history
  • Loading branch information
tunetheweb committed Aug 23, 2020
1 parent 770621b commit 956e0c7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
template: |
## What’s Changed
$CHANGES
exclude-labels:
- 'generate chapters'
21 changes: 21 additions & 0 deletions .github/workflows/add-to-release-notes.yml
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 }}

0 comments on commit 956e0c7

Please sign in to comment.