Skip to content

Commit 161d59e

Browse files
craig[bot]cockroach-teamcityrafiss
committed
152640: master: Update pkg/testutils/release/cockroach_releases.yaml r=rail a=cockroach-teamcity Update pkg/testutils/release/cockroach_releases.yaml with recent values. Epic: None Release note: None Release justification: test-only updates 152686: workflows: improve logging and search criteria for auto-merge workflow r=rafiss a=rafiss ### workflows: log when auto-merge workflow has nothing to do ### workflows: broaden criteria for auto-merge workflow Previously, the search excluded PRs made by the blathers bot account as well as PRs that didn't have the blathers-backport label. In practice, this meant it only found PRs that were made by blathers _and also_ only if the original PR author had set up oauth to allow blathers to automatically backport it using their account. Now, the search will find any test only backport PR, regardless of author. Epic: None Release note: None Co-authored-by: CRL Release bot <[email protected]> Co-authored-by: Rafi Shamim <[email protected]>
3 parents 4fe0aa8 + c024ff5 + a59cade commit 161d59e

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

.github/workflows/auto-merge-backports.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
2525
const query = `
2626
query SearchPRs() {
27-
search(query: "repo:${context.repo.owner}/${context.repo.repo} is:pr is:open label:backport label:blathers-backport label:backport-test-only -author:blathers-crl[bot]", type: ISSUE, first: 100) {
27+
search(query: "repo:${context.repo.owner}/${context.repo.repo} is:pr is:open label:backport label:backport-test-only", type: ISSUE, first: 100) {
2828
nodes {
2929
... on PullRequest {
3030
number
@@ -51,6 +51,12 @@ jobs:
5151
const result = await github.graphql(query);
5252
const prs = result.search.nodes;
5353
54+
if (prs.length === 0) {
55+
console.log('No backport PRs found matching criteria');
56+
} else {
57+
console.log(`Found ${prs.length} backport PR(s) to evaluate`);
58+
}
59+
5460
for (const pr of prs) {
5561
const createdAt = new Date(pr.createdAt);
5662
const isOldEnough = createdAt <= iso24HoursAgo;

pkg/sql/logictest/REPOSITORIES.bzl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ CONFIG_DARWIN_AMD64 = "darwin-10.9-amd64"
77
CONFIG_DARWIN_ARM64 = "darwin-11.0-arm64"
88

99
_CONFIGS = [
10-
("25.2.4", [
11-
(CONFIG_DARWIN_AMD64, "23e2f7e68a38fcc8186f00e021e3e851823a32dad2d31663f594c2b904c71a58"),
12-
(CONFIG_DARWIN_ARM64, "86c28ca0400660205db20ebcc81d3ea296f7efae5e6bb13c2bf31bc04651fad6"),
13-
(CONFIG_LINUX_AMD64, "7b433d00bb57d9947dc9931058b16f44ff31dd2a25ed625233c3bf62e4413b58"),
14-
(CONFIG_LINUX_ARM64, "f808519d147cb0f7772569d981c7f6aa47b82cb06c35e4eb1eb2aaad87024813"),
10+
("25.2.5", [
11+
(CONFIG_DARWIN_AMD64, "d4e916ddc73970cd3a805a6bdc0b2539c64ef26402b61869c871e9363c5dab67"),
12+
(CONFIG_DARWIN_ARM64, "85c98fe4e9eebafda279e384cca939190c3031f556d81ff3a7067a57b97b4bb8"),
13+
(CONFIG_LINUX_AMD64, "3fb4d204a4b286583a2f6b1a4711c5322d039bf751b17dfa7d5920ba2f94cef2"),
14+
(CONFIG_LINUX_ARM64, "7fe100b576fcd6347b6cc0d192d6e88f8b08dc3feb243fd6b4ade422f74b0b84"),
1515
]),
1616
("25.3.0", [
1717
(CONFIG_DARWIN_AMD64, "8628ceee258fc662a25108e5df0359b183cfe0118bdab993cd5cc1ce21abe63a"),

pkg/testutils/release/cockroach_releases.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@
2222
latest: 23.2.27
2323
predecessor: "23.1"
2424
"24.1":
25-
latest: 24.1.22
25+
latest: 24.1.23
2626
predecessor: "23.2"
2727
"24.2":
2828
latest: 24.2.10
2929
withdrawn:
3030
- 24.2.1
3131
predecessor: "24.1"
3232
"24.3":
33-
latest: 24.3.18
33+
latest: 24.3.19
3434
predecessor: "24.2"
3535
"25.1":
3636
latest: 25.1.10
3737
predecessor: "24.3"
3838
"25.2":
39-
latest: 25.2.4
39+
latest: 25.2.5
4040
predecessor: "25.1"
4141
"25.3":
4242
latest: 25.3.0

0 commit comments

Comments
 (0)