From cfb065ff8a2f8ecd10208867aa0cb201d42c6f88 Mon Sep 17 00:00:00 2001 From: Matthias Kurz Date: Fri, 8 Mar 2024 09:50:13 +0100 Subject: [PATCH] Add branch Scala stewards PRs + branch settings --- .github/scala-steward.conf | 4 ++-- .github/workflows/build-test.yml | 2 +- .github/workflows/dependency-graph.yml | 2 +- .github/workflows/publish.yml | 2 +- .github/workflows/release-drafter.yml | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/scala-steward.conf b/.github/scala-steward.conf index c17dba63..ee3391a8 100644 --- a/.github/scala-steward.conf +++ b/.github/scala-steward.conf @@ -1,7 +1,7 @@ pullRequests.frequency = "@monthly" -commits.message = "${artifactName} ${nextVersion} (was ${currentVersion})" +commits.message = "[6.0.x] ${artifactName} ${nextVersion} (was ${currentVersion})" pullRequests.grouping = [ - { name = "patches", "title" = "Patch updates", "filter" = [{"version" = "patch"}] } + { name = "patches", "title" = "[6.0.x] Patch updates", "filter" = [{"version" = "patch"}] } ] diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 70092fe3..68064acc 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -5,7 +5,7 @@ on: push: branches: - - main # Check branch after merge + - 6.0.x # Check branch after merge concurrency: # Only run once for latest commit per ref and cancel other (previous) runs. diff --git a/.github/workflows/dependency-graph.yml b/.github/workflows/dependency-graph.yml index 69cfe553..0498ddac 100644 --- a/.github/workflows/dependency-graph.yml +++ b/.github/workflows/dependency-graph.yml @@ -2,7 +2,7 @@ name: Dependency Graph on: push: branches: - - main + - 6.0.x concurrency: # Only run once for latest commit per ref and cancel other (previous) runs. diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index db1edc72..cc9fb6e4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -3,7 +3,7 @@ name: Publish on: push: branches: # Snapshots - - main + - 6.0.x tags: ["**"] # Releases jobs: diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 11d2b7d7..7d36fde4 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -3,7 +3,7 @@ name: Release Drafter on: push: branches: - - main + - 6.0.x jobs: update_release_draft: @@ -12,7 +12,7 @@ jobs: - uses: release-drafter/release-drafter@v5 with: name: "Play Slick $RESOLVED_VERSION" - config-name: release-drafts/increasing-major-version.yml # located in .github/ in the default branch within this or the .github repo + config-name: release-drafts/increasing-patch-version.yml # located in .github/ in the default branch within this or the .github repo commitish: ${{ github.ref_name }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}