issue_comment.yml 786 B

1234567891011121314151617181920212223
  1. name: Sync issue comments to JIRA
  2. # This workflow will be triggered when new issue comment is created (including PR comments)
  3. on: issue_comment
  4. # Limit to single concurrent run for workflows which can create Jira issues.
  5. # Same concurrency group is used in new_issues.yml
  6. concurrency: jira_issues
  7. jobs:
  8. sync_issue_comments_to_jira:
  9. name: Sync Issue Comments to Jira
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/checkout@v3
  13. - name: Sync issue comments to JIRA
  14. uses: espressif/github-actions/sync_issues_to_jira@master
  15. env:
  16. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  17. JIRA_PASS: ${{ secrets.JIRA_PASS }}
  18. JIRA_PROJECT: IDFGH
  19. JIRA_URL: ${{ secrets.JIRA_URL }}
  20. JIRA_USER: ${{ secrets.JIRA_USER }}