From 9af5353f4ba2d7e5919ab1588a59eb8f079863db Mon Sep 17 00:00:00 2001 From: HugoRCD Date: Sun, 31 Mar 2024 18:27:43 +0200 Subject: [PATCH] docs: update github files --- .github/pull_request_template.md | 32 +++++++++----- .github/release.yml | 46 +++++++++++++++++++++ .github/workflows/semantic-pull-request.yml | 8 +++- 3 files changed, 73 insertions(+), 13 deletions(-) create mode 100644 .github/release.yml diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index ddbd4e91..3d24197b 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,22 +1,32 @@ ### ๐Ÿ”— Linked issue -### โ“ Type of change - - - -- [ ] ๐Ÿ“– Documentation (updates to the documentation or readme) -- [ ] ๐Ÿž Bug fix (a non-breaking change that fixes an issue) -- [ ] ๐Ÿ‘Œ Enhancement (improving an existing functionality) -- [ ] โœจ New feature (a non-breaking change that adds functionality) -- [ ] ๐Ÿงน Chore (updates to the build process or auxiliary tools and libraries) -- [ ] โš ๏ธ Breaking change (fix or feature that would cause existing functionality to change) - ### ๐Ÿ“š Description diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 00000000..941e9e70 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,46 @@ +changelog: + exclude: + labels: + - ignore-for-release + authors: + - octocat + categories: + - title: Breaking Changes ๐Ÿ’ฅ + labels: + - breaking + - title: Features ๐Ÿš€ + labels: + - feat + - title: Bug Fixes ๐Ÿž + labels: + - fix + - title: Build System ๐Ÿ›  + labels: + - build + - title: Continuous Integration ๐Ÿ”„ + labels: + - ci + - title: Documentation ๐Ÿ“š + labels: + - docs + - title: Enhancements ๐ŸŒˆ + labels: + - enhancement + - title: Dependency Updates ๐Ÿ“ฆ + labels: + - chore + - title: Performance Improvements โšก๏ธ + labels: + - performance + - title: Style ๐Ÿ’… + labels: + - style + - title: Tests ๐Ÿงช + labels: + - tests + - title: Refactoring ๐Ÿ›  + labels: + - refactor + - title: Revert ๐Ÿ”„ + labels: + - revert diff --git a/.github/workflows/semantic-pull-request.yml b/.github/workflows/semantic-pull-request.yml index 0fbae99e..31db17ab 100644 --- a/.github/workflows/semantic-pull-request.yml +++ b/.github/workflows/semantic-pull-request.yml @@ -25,12 +25,16 @@ jobs: breaking feat fix + build + ci docs + enhancement chore + performance + style + tests refactor revert - style - test env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}