mirror of
https://github.com/home-assistant/core.git
synced 2025-12-26 22:18:40 +00:00
15 lines
407 B
HCL
15 lines
407 B
HCL
workflow "Mention CODEOWNERS of integrations when integration label is added to an issue" {
|
|
on = "issues"
|
|
resolves = "codeowners-mention"
|
|
}
|
|
|
|
workflow "Mention CODEOWNERS of integrations when integration label is added to an PRs" {
|
|
on = "pull_request"
|
|
resolves = "codeowners-mention"
|
|
}
|
|
|
|
action "codeowners-mention" {
|
|
uses = "home-assistant/codeowners-mention@master"
|
|
secrets = ["GITHUB_TOKEN"]
|
|
}
|