Skip to content

Commit

Permalink
Add a release template to the compiler. (#4692)
Browse files Browse the repository at this point in the history
* Add a release template to the compiler.

* Fix some stale release configurations.
  • Loading branch information
fruffy authored May 30, 2024
1 parent 675d5bc commit b0d4d02
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
41 changes: 41 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# .github/release.yml

changelog:
exclude:
labels:
- ignore-for-release
authors:
- octocat
categories:
- title: Breaking Changes 🛠
labels:
- breaking-change
- title: P4 Specification Implementation
labels:
- p4-spec
- title: Changes to the Compiler Core
labels:
- core
- title: Changes to the Control Plane
labels:
- control-plane
- title: Changes to the BMv2 Back Ends
labels:
- bmv2
- bmv2-psa
- title: Changes to the eBPF Back Ends
labels:
- ebpf
- ebpf-psa
- title: Changes to the TC Back End
labels:
- p4tc
- title: Changes to the DPDK Back End
labels:
- dpdk
- title: Changes to the P4Tools Back End
labels:
- p4tools
- title: Other Changes
labels:
- "*"
2 changes: 1 addition & 1 deletion .github/workflows/ci-auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
with:
base: main
add-paths: Version.txt
reviewers: mbudiu-vmw
reviewers: fruffy, jafingerhut, jnfoster
commit-message: ${{ steps.message.outputs.content }}
signoff: false
branch: v${{ env.VERSION }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ env.TAG }}
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit b0d4d02

Please sign in to comment.