We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 851eae0 commit 40cc703Copy full SHA for 40cc703
.github/main.workflow
@@ -1,9 +1,14 @@
1
-workflow "Autorebase on merge commits" {
+workflow "Autorebase PR on merge commits" {
2
+ on = "pull_request"
3
+ resolves = "rebase"
4
+}
5
+
6
+workflow "Autorebase branch on merge commits" {
7
on = "push"
- resolves = ["docker://ljharb/rebase:latest"]
8
9
}
10
-action "docker://ljharb/rebase:latest" {
- uses = "docker://ljharb/rebase:latest"
11
+action "rebase" {
12
+ uses = "ljharb/rebase:master"
13
secrets = ["GITHUB_TOKEN"]
14
0 commit comments