new_issues.yml 581 B

12345678910111213141516171819
  1. name: Sync issues to Jira
  2. # This workflow will be triggered when a new issue is opened
  3. on: issues
  4. jobs:
  5. sync_issues_to_jira:
  6. name: Sync issues to Jira
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/checkout@master
  10. - name: Sync GitHub issues to Jira project
  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 }}