issue_comment.yml 636 B

12345678910111213141516171819
  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. jobs:
  5. sync_issue_comments_to_jira:
  6. name: Sync Issue Comments to Jira
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/checkout@master
  10. - name: Sync issue comments to JIRA
  11. uses: espressif/github-actions/sync_issues_to_jira@master
  12. env:
  13. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  14. JIRA_PASS: ${{ secrets.JIRA_PASS }}
  15. JIRA_PROJECT: IDFGH
  16. JIRA_URL: ${{ secrets.JIRA_URL }}
  17. JIRA_USER: ${{ secrets.JIRA_USER }}