issue_comment.yml 667 B

1234567891011121314151617181920
  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: ESF
  16. JIRA_COMPONENT: GitHub
  17. JIRA_URL: ${{ secrets.JIRA_URL }}
  18. JIRA_USER: ${{ secrets.JIRA_USER }}