2019-09-04 07:36:50 +00:00
|
|
|
name: Sync issue comments to JIRA
|
|
|
|
|
2019-10-22 11:52:12 +00:00
|
|
|
# This workflow will be triggered when new issue comment is created (including PR comments)
|
2019-08-12 11:45:48 +00:00
|
|
|
on: issue_comment
|
2019-09-04 07:36:50 +00:00
|
|
|
|
2019-08-12 11:45:48 +00:00
|
|
|
jobs:
|
2019-10-22 11:52:12 +00:00
|
|
|
sync_issue_comments_to_jira:
|
|
|
|
name: Sync Issue Comments to Jira
|
2019-08-12 11:45:48 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2019-09-04 07:36:50 +00:00
|
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Sync issue comments to JIRA
|
|
|
|
uses: espressif/github-actions/sync_issues_to_jira@master
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
JIRA_PASS: ${{ secrets.JIRA_PASS }}
|
|
|
|
JIRA_PROJECT: IDFGH
|
|
|
|
JIRA_URL: ${{ secrets.JIRA_URL }}
|
|
|
|
JIRA_USER: ${{ secrets.JIRA_USER }}
|