From f9564400e8c3cbd00d4dd9ad68ce9076316763c9 Mon Sep 17 00:00:00 2001 From: Robbie Trencheny Date: Wed, 3 Apr 2019 23:53:17 -0700 Subject: [PATCH] Activate codeowners-mention via GitHub actions --- .github/main.workflow | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/main.workflow diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 00000000000..62336ebf126 --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,14 @@ +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"] +}