From e3b083faa44bfd9a276cf4e99aa8fe1e9b138d65 Mon Sep 17 00:00:00 2001 From: AbdElraouf Sabri Date: Sun, 17 Jul 2022 00:51:31 +0200 Subject: [PATCH] feat: update release drafter (#5) --- .github/release-drafter.yml | 47 ------------------------------------ .github/workflows/sdk-ci.yml | 8 ++++++ .releaserc | 2 +- 3 files changed, 9 insertions(+), 48 deletions(-) delete mode 100644 .github/release-drafter.yml diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml deleted file mode 100644 index d12bdbc..0000000 --- a/.github/release-drafter.yml +++ /dev/null @@ -1,47 +0,0 @@ -# Config for https://github.com/apps/release-drafter -name-template: "$RESOLVED_VERSION 🦉 " -tag-template: "$RESOLVED_VERSION" -categories: - - title: "🚀 New Features and Enhancements " - labels: - - "feature" - - "enhancement" - - "ui" - - title: "💣 Breaking Changes " - labels: - - "breaking-change" - - title: "🏇 Optimizations " - labels: - - "optimize" - - "performance" - - title: "🐛 Bug Fixes " - labels: - - "bugfix" - - "bug" - - title: "🔨 Maintenance " - labels: - - "maintenance" - - "refactoring" - - "chore" - - "build" - - "ci" -change-template: "- $TITLE (#$NUMBER) @$AUTHOR" -version-resolver: - major: - labels: - - "major" - minor: - labels: - - "minor" - patch: - labels: - - "patch" - default: patch -exclude-labels: - - "skip-changelog" -template: | - ## Changes - - $CHANGES - - Thanks again to $CONTRIBUTORS for the contributions! 🎉 \ No newline at end of file diff --git a/.github/workflows/sdk-ci.yml b/.github/workflows/sdk-ci.yml index 13aa3e0..e03904e 100644 --- a/.github/workflows/sdk-ci.yml +++ b/.github/workflows/sdk-ci.yml @@ -4,9 +4,17 @@ on: push: branches: - master + - next + - next-major + - beta + - alpha pull_request: branches: - master + - next + - next-major + - beta + - alpha env: GRADLE: '7.4.2' diff --git a/.releaserc b/.releaserc index 2dfc630..bd73686 100644 --- a/.releaserc +++ b/.releaserc @@ -1,3 +1,3 @@ { - "branches": ["master"] + "branches": ["master", "next", "next-major"] } \ No newline at end of file