Skip to content

Commit

Permalink
Automate Github Release (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinayagarwal authored Feb 16, 2022
1 parent 02d36b8 commit 803d780
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
changelog:
exclude:
labels:
- housekeeping
authors:
- gluon-bot
categories:
- title: What’s Changed
labels:
- "*"
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Release
on:
push:
tags:
- '*'

jobs:
build:
name: release-notes
runs-on: ubuntu-latest
steps:
- name: Create GitHub release
uses: softprops/action-gh-release@v1
with:
token: ${{ secrets.PAT }}
generate_release_notes: true

0 comments on commit 803d780

Please sign in to comment.