Skip to content

Commit 40cc703

Browse files
committed
[meta] fix docker image url
1 parent 851eae0 commit 40cc703

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/main.workflow

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1-
workflow "Autorebase on merge commits" {
1+
workflow "Autorebase PR on merge commits" {
2+
on = "pull_request"
3+
resolves = "rebase"
4+
}
5+
6+
workflow "Autorebase branch on merge commits" {
27
on = "push"
3-
resolves = ["docker://ljharb/rebase:latest"]
8+
resolves = "rebase"
49
}
510

6-
action "docker://ljharb/rebase:latest" {
7-
uses = "docker://ljharb/rebase:latest"
11+
action "rebase" {
12+
uses = "ljharb/rebase:master"
813
secrets = ["GITHUB_TOKEN"]
914
}

0 commit comments

Comments
 (0)