From d8978bc5612ccb8448444f5b2a6e7aca2959a44a Mon Sep 17 00:00:00 2001 From: Hayley Campbell Date: Mon, 6 Jan 2025 15:32:58 +0100 Subject: [PATCH] Add github automated release configuration (#327) - Remove pull request check - Update labels used in the issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- .github/release.yml | 23 +++++++++++++++++++++++ .github/workflows/pull-request-check.yml | 23 ----------------------- 4 files changed, 25 insertions(+), 25 deletions(-) create mode 100644 .github/release.yml delete mode 100644 .github/workflows/pull-request-check.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 05fa56dd3..990dc4287 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -2,7 +2,7 @@ name: Bug report about: Create a report to help us improve title: '' -labels: kind/bug +labels: bug assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 641ae4589..19f881377 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -2,7 +2,7 @@ name: Feature request about: Suggest an idea for this project title: '' -labels: kind/enhancement +labels: enhancement assignees: '' --- diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 000000000..e49cb2836 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,23 @@ +changelog: + exclude: + labels: + - ignore-for-release + categories: + - title: Added + labels: + - enhancement + - title: Fixed + labels: + - bug + - title: Changed + labels: + - "*" + - title: Deprecated + labels: + - deprecated + - title: Breaking Changes + labels: + - breaking + - title: Documentation + labels: + - documentation \ No newline at end of file diff --git a/.github/workflows/pull-request-check.yml b/.github/workflows/pull-request-check.yml deleted file mode 100644 index 17d1a4561..000000000 --- a/.github/workflows/pull-request-check.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Pull Request check -on: - pull_request: - paths-ignore: - - "test/**" - - "generators/**" - - "samples/**" - - "**.md" - - "gencert.sh" - - ".github/**" - - ".gitignore" - - ".gitattributes" - - ".editorconfig" - types: [ opened, edited ] -jobs: - checkPullRequest: - name: Pull Request check - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Check pull requests - uses: EventStore/Automations/pr-check@master