mirror of
https://github.com/HackPlan/polaris-react.git
synced 2026-01-12 22:44:36 +08:00
28 lines
612 B
HCL
28 lines
612 B
HCL
workflow "✨Add new issues to project" {
|
|
resolves = ["Add new issues to project"]
|
|
on = "issues"
|
|
}
|
|
|
|
action "Add new issues to project" {
|
|
uses = "alex-page/add-new-issue-project@master"
|
|
args = ["🌌 Polaris backlog", "👀 Triage"]
|
|
secrets = [
|
|
"GH_PAT",
|
|
"GITHUB_TOKEN",
|
|
]
|
|
}
|
|
|
|
workflow "✨Move assigned issues to column" {
|
|
resolves = ["Move assigned issue to column"]
|
|
on = "issues"
|
|
}
|
|
|
|
action "Move assigned issue to column" {
|
|
uses = "alex-page/move-assigned-issue-column@master"
|
|
args = ["🌌 Polaris backlog", "🚀 In progress"]
|
|
secrets = [
|
|
"GH_PAT",
|
|
"GITHUB_TOKEN",
|
|
]
|
|
}
|