Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.workflow « .github « is-callable « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04944811f8b70d5ab0abc5487637ff0bae5aa9cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
workflow "Autorebase branch on merge commits" {
	on = "push"
	resolves = ["rebase"]
}

workflow "Autorebase PR on merge commits" {
	on = "pull_request"
	resolves = ["rebase"]
}

 action "rebase" {
	uses = "ljharb/rebase@latest"
	secrets = ["GITHUB_TOKEN"]
}