From d0e35646038cf3487c687c9d535ccaa833f0aecc Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Fri, 8 Mar 2019 18:39:00 +1100 Subject: [PATCH] github: Add workflow file to sync issues to JIRA --- .github/main.workflow | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/main.workflow diff --git a/.github/main.workflow b/.github/main.workflow new file mode 100644 index 000000000..12e566f5d --- /dev/null +++ b/.github/main.workflow @@ -0,0 +1,17 @@ +workflow "Sync issues to JIRA" { + on = "issues" + resolves = ["Sync to JIRA"] +} + +workflow "Sync issue comments to JIRA" { + on = "issue_comment" + resolves = ["Sync to JIRA"] +} + +action "Sync to JIRA" { + uses = "espressif/github-actions/sync_issues_to_jira@master" + secrets = ["GITHUB_TOKEN", "JIRA_URL", "JIRA_USER", "JIRA_PASS"] + env = { + JIRA_PROJECT = "IDFGH" + } +}