diff --git a/.github/autolabeler.yml b/.github/autolabeler.yml deleted file mode 100644 index 8d0b3381a..000000000 --- a/.github/autolabeler.yml +++ /dev/null @@ -1,14 +0,0 @@ -# configuration for https://github.com/probot/autolabeler - -documentation: ["/docs", "/doc-examples"] -dependency-change: "/project/Dependencies.scala" - -'t:bootstrap': ["/cluster-bootstrap", "/bootstrap-demo", "/bootstrap-joining-demo"] -'t:cluster-http': ["/cluster-http"] - -'t:aws': ["/discovery-aws-api", "/discovery-aws-api-async"] -'t:consul': ["/discovery-consul"] -'t:kubernetes': ["/discovery-kubernetes-api"] -'t:marathon': ["/discovery-marathon-api"] - -'t:dynamic-log-levels': ["/loglevels-logback"] diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml deleted file mode 100644 index f11b98fb8..000000000 --- a/.github/release-drafter.yml +++ /dev/null @@ -1,23 +0,0 @@ -# Config for https://github.com/toolmantim/release-drafter -name-template: 'Akka Management $NEXT_PATCH_VERSION' -tag-template: 'v$NEXT_PATCH_VERSION' -categories: - - title: 'Cluster Bootstrap' - label: 't:bootstrap' - - title: 'Cluster HTTP Management' - label: 't:cluster-http' - - title: 'Discovery: AWS' - label: 't:aws' - - title: 'Discovery: Consul' - label: 't:consul' - - title: 'Discovery: Kubernetes' - label: 't:kubernetes' - - title: 'Discovery: Marathon' - label: 't:marathon' - - -change-template: '- $TITLE [#$NUMBER](https://github.com/akka/akka-management/issues/$NUMBER) by [@$AUTHOR](https://github.com/$AUTHOR)' -template: | - ## Changes - - $CHANGES diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml deleted file mode 100644 index aaf249485..000000000 --- a/.github/workflows/release-drafter.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Release Drafter - -on: - push: - # branches to consider in the event; optional, defaults to all - branches: - - main - - release-* - -permissions: - contents: read - -jobs: - update_release_draft: - runs-on: ubuntu-latest - if: github.repository == 'akka/akka-management' - permissions: - contents: write - steps: - # Drafts your next Release notes as Pull Requests are merged - # https://github.com/release-drafter/release-drafter/releases - # v5.21.1 - - uses: release-drafter/release-drafter@6df64e4ba4842c203c604c1f45246c5863410adb - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}