Skip to content

Commit 171605c

Browse files
authored
Merge pull request #286 from mkurz/3.0.x_branch
[3.0.x] Introduce 3.0.x branch
2 parents ea3a3d4 + d53c9d0 commit 171605c

6 files changed

+7
-20
lines changed

.github/dependabot.yml

-13
This file was deleted.

.github/scala-steward.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pullRequests.frequency = "@monthly"
22

3-
commits.message = "${artifactName} ${nextVersion} (was ${currentVersion})"
3+
commits.message = "[3.0.x] ${artifactName} ${nextVersion} (was ${currentVersion})"
44

55
pullRequests.grouping = [
6-
{ name = "patches", "title" = "Patch updates", "filter" = [{"version" = "patch"}] }
6+
{ name = "patches", "title" = "[3.0.x] Patch updates", "filter" = [{"version" = "patch"}] }
77
]

.github/workflows/build-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
push:
77
branches:
8-
- main # Check branch after merge
8+
- 3.0.x # Check branch after merge
99

1010
concurrency:
1111
# Only run once for latest commit per ref and cancel other (previous) runs.

.github/workflows/dependency-graph.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Dependency Graph
22
on:
33
push:
44
branches:
5-
- main
5+
- 3.0.x
66

77
concurrency:
88
# Only run once for latest commit per ref and cancel other (previous) runs.

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish
33
on:
44
push:
55
branches: # Snapshots
6-
- main
6+
- 3.0.x
77
tags: ["**"] # Releases
88

99
jobs:

.github/workflows/release-drafter.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release Drafter
33
on:
44
push:
55
branches:
6-
- main
6+
- 3.0.x
77

88
jobs:
99
update_release_draft:
@@ -12,7 +12,7 @@ jobs:
1212
- uses: release-drafter/release-drafter@v6
1313
with:
1414
name: "play-doc $RESOLVED_VERSION"
15-
config-name: release-drafts/increasing-minor-version.yml # located in .github/ in the default branch within this or the .github repo
15+
config-name: release-drafts/increasing-patch-version.yml # located in .github/ in the default branch within this or the .github repo
1616
commitish: ${{ github.ref_name }}
1717
env:
1818
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)