Skip to content

Commit 6459a34

Browse files
committed
Restore required validation check name
1 parent 01a5dc8 commit 6459a34

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Auto-merge GoReleaser Homebrew PRs
33
on:
44
workflow_run:
55
workflows:
6-
- Validate Homebrew recipes
6+
- Validate cask
77
types:
88
- completed
99

@@ -80,8 +80,8 @@ jobs:
8080
((.files[0].changeType == "ADDED") or (.files[0].changeType == "MODIFIED")) and
8181
any(.statusCheckRollup[]?;
8282
.__typename == "CheckRun" and
83-
.workflowName == "Validate Homebrew recipes" and
84-
.name == "validate-homebrew" and
83+
.workflowName == "Validate cask" and
84+
.name == "validate-cask" and
8585
.status == "COMPLETED" and
8686
.conclusion == "SUCCESS"
8787
)

.github/workflows/validate-cask.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Validate Homebrew recipes
1+
name: Validate cask
22

33
on:
44
pull_request:
@@ -12,8 +12,8 @@ permissions:
1212
contents: read
1313

1414
jobs:
15-
validate-homebrew:
16-
name: validate-homebrew
15+
validate-cask:
16+
name: validate-cask
1717
runs-on: macos-latest
1818

1919
steps:

0 commit comments

Comments
 (0)