Skip to content

Commit

Permalink
[meta] fix docker image url
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Apr 12, 2019
1 parent 851eae0 commit 40cc703
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/main.workflow
@@ -1,9 +1,14 @@
workflow "Autorebase on merge commits" {
workflow "Autorebase PR on merge commits" {
on = "pull_request"
resolves = "rebase"
}

workflow "Autorebase branch on merge commits" {
on = "push"
resolves = ["docker://ljharb/rebase:latest"]
resolves = "rebase"
}

action "docker://ljharb/rebase:latest" {
uses = "docker://ljharb/rebase:latest"
action "rebase" {
uses = "ljharb/rebase:master"
secrets = ["GITHUB_TOKEN"]
}

0 comments on commit 40cc703

Please sign in to comment.