mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
58577db086
1. Disable the broken pull request sync temporarily 2. move python lint from travis to github action
19 lines
512 B
YAML
19 lines
512 B
YAML
name: Sync issue comments to JIRA
|
|
|
|
on: issue_comment
|
|
|
|
jobs:
|
|
syncToJIRA:
|
|
name: Sync to JIRA
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- 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 }}
|