tweak style for gateway list item hover #1028
This file contains 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 GitHub issues to Jira | |
on: [issues, issue_comment] | |
jobs: | |
sync-issues: | |
name: Sync issues to Jira | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ikethecoder/sync-issues-github-jira@dev | |
with: | |
webhook-url: ${{ secrets.JIRA_WEBHOOK_URL }} | |
cleanup-runs: | |
name: Delete workflow runs | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write | |
steps: | |
- name: Delete workflow runs | |
uses: Mattraks/delete-workflow-runs@v2 | |
with: | |
token: ${{ github.token }} | |
repository: ${{ github.repository }} | |
retain_days: 1 | |
keep_minimum_runs: 5 | |
delete_workflow_pattern: jira.yaml |