Merge branch 'feature/sync_issues_to_jira' into 'master'

github: Add workflow file to sync issues to JIRA

See merge request idf/esp-idf!4443
This commit is contained in:
Angus Gratton 2019-03-12 06:31:48 +08:00
commit 86c9b63546

17
.github/main.workflow vendored Normal file
View file

@ -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"
}
}