Skip to content

Commit 75b235b

Browse files
committed
workflow: auto-merge-backports should skip blathers PRs
Previously, the search included PRs that are created by blasters. These PRs cannot be approved by blathers, so they should be skipped. Release note: none Epic: none
1 parent b708dbe commit 75b235b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 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", type: ISSUE, first: 100) {
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) {
2828
nodes {
2929
... on PullRequest {
3030
number

0 commit comments

Comments
 (0)