d0739861e8
Currently the GitHub sync half-syncs these (as it will create a JIRA issue as soon as the first comment is made on the PR).
22 lines
468 B
HCL
22 lines
468 B
HCL
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 = "IDFGH"
|
|
}
|
|
}
|