Feedback on epas 18 - "Ungrouped configuration parameters" #194
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: sync issues with Jira | |
| on: | |
| issues: | |
| types: [opened, closed, reopened, edited] | |
| jobs: | |
| sync-issues: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sync tool | |
| uses: actions/checkout@v4 | |
| with: | |
| lfs: true | |
| sparse-checkout: | | |
| .github | |
| tools | |
| - name: setup node | |
| uses: actions/setup-node@v4 | |
| - name: install dependencies | |
| run: npm --prefix ./tools/automation/actions/jira-sync ci | |
| - name: sync issues | |
| uses: ./tools/automation/actions/jira-sync | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| jira-auth: ${{ secrets.JIRA_AUTH }} | |
| include-issue: ${{ github.event.issue.number }} |