From 70394f9aa331f4cb0f1e71d5c4bb1ca4e7ac69df Mon Sep 17 00:00:00 2001 From: Hayley Campbell Date: Fri, 20 Dec 2024 11:32:11 +0100 Subject: [PATCH] Add github automated release configuration - Remove pull request check --- .github/release.yml | 23 +++++++++++++++++++++++ .github/workflows/pull-request-check.yml | 17 ----------------- 2 files changed, 23 insertions(+), 17 deletions(-) create mode 100644 .github/release.yml delete mode 100644 .github/workflows/pull-request-check.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 00000000..e49cb283 --- /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 428d57d6..00000000 --- a/.github/workflows/pull-request-check.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Pull Request check -on: - pull_request: - paths-ignore: - - "tests/**" - - "examples/**" - - "**.md" - types: [opened, edited] -jobs: - checkPullRequest: - name: Pull Request check - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Check pull requests - uses: EventStore/Automations/pr-check@master \ No newline at end of file