Skip to content

Commit 14e1e0d

Browse files
Merge branch 'master' into update/sbt-scalafmt-2.5.4
2 parents 96cfc0d + 330d45a commit 14e1e0d

File tree

3 files changed

+27
-21
lines changed

3 files changed

+27
-21
lines changed

.github/workflows/auto-approve.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: Auto approve
2-
3-
on:
4-
pull_request_target
2+
on: pull_request_target
53

64
jobs:
7-
auto-approve:
8-
runs-on: ubuntu-22.04
5+
build:
6+
runs-on: ubuntu-latest
7+
permissions:
8+
pull-requests: write
9+
if: github.actor == 'renovate[bot]' || github.actor == 'cala-steward-bitlap[bot]'
910
steps:
1011
- uses: hmarr/auto-approve-action@v4
11-
if: github.actor == 'scala-steward' || github.actor == 'renovate[bot]'
1212
with:
13-
github-token: "${{ secrets.GITHUB_TOKEN }}"
13+
github-token: "${{ secrets.GITHUB_TOKEN }}"

.mergify.yml

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,30 @@
1+
queue_rules:
2+
- name: default
3+
merge_conditions:
4+
- "-draft"
5+
merge_method: merge
6+
update_method: rebase
7+
18
pull_request_rules:
29
- name: assign and label scala-steward's PRs
310
conditions:
4-
- author=scala-steward
11+
- or:
12+
- "author=scala-steward"
13+
- "author=scala-steward-bitlap[bot]"
14+
- "author=renovate[bot]"
515
actions:
616
assign:
717
users: ["@bitlap/intellij-sbt-dependency-analyzer"]
818
label:
919
add: ["type: dependencies"]
10-
- name: label scala-steward's breaking PRs
11-
conditions:
12-
- author=scala-steward
13-
- "body~=(labels: library-update, early-semver-major)|(labels: sbt-plugin-update, early-semver-major)"
14-
actions:
15-
label:
16-
add: ["type: breaking"]
20+
1721
- name: merge Scala Steward's PRs
1822
conditions:
19-
- author=scala-steward
20-
- "body~=(labels: library-update, early-semver-minor)|(labels: library-update, early-semver-patch)|(labels: sbt-plugin-update, early-semver-minor)|(labels: sbt-plugin-update, early-semver-patch)|(labels: test-library-update)"
21-
- "check-success=ci"
23+
- "check-success=ci"
24+
- or:
25+
- "author=scala-steward"
26+
- "author=scala-steward-bitlap[bot]"
27+
- "author=renovate[bot]"
2228
actions:
23-
merge:
24-
method: squash
29+
queue:
30+
name: default

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ ThisBuild / resolvers ++= Seq(
33
"Sonatype OSS Releases" at "https://s01.oss.sonatype.org/content/repositories/releases"
44
)
55
addSbtPlugin("org.jetbrains" % "sbt-ide-settings" % "1.1.0")
6-
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "4.0.2")
6+
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "4.0.4")
77
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")
88
addSbtPlugin("org.bitlap" % "sbt-kotlin-plugin" % "4.0.0")

0 commit comments

Comments
 (0)