You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
297 B
11 lines
297 B
workflow "Add an issue reference to a pull request" {
|
|
on = "pull_request"
|
|
resolves = "Add an issue reference"
|
|
}
|
|
|
|
action "Add an issue reference" {
|
|
uses = "kentaro-m/add-an-issue-reference-action@master"
|
|
secrets = ["ACTION_TOKEN"]
|
|
# branch name prefix
|
|
args = "{\"branch\":\"issue\"}"
|
|
}
|
|
|