Merge branch 'chore/sync_github_to_jira' into 'master'

Sync issues from github to JIRA

See merge request sdk/ESP8266_RTOS_SDK!866
This commit is contained in:
Dong Heng
2019-03-29 16:00:29 +08:00

22
.github/main.workflow vendored Normal file
View File

@ -0,0 +1,22 @@
workflow "Sync issues to JIRA" {
on = "issues"
resolves = ["Sync to JIRA"]
}
workflow "Sync issue and PR comments to JIRA" {
on = "issue_comment"
resolves = ["Sync to JIRA"]
}
workflow "Sync PRs to JIRA" {
on = "pull_request"
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 = "GIT8266O"
}
}