We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ae84a9 + c468d28 commit 0252c2bCopy full SHA for 0252c2b
.github/workflows/security-ghas-to-jira.yml
@@ -0,0 +1,20 @@
1
+name: "Sync Github Advanced Security Alerts to Jira"
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 */12 * * *' # trigger synchronization every 12 hours
6
7
+jobs:
8
+ ghas_alerts_to_jira:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Sync alerts to Jira issues
12
+ uses: triplelift-internal/ghas-jira-integration@v1.2.4-tl
13
+ with:
14
+ jira_url: '${{ secrets.JIRA_HOST }}'
15
+ jira_user: '${{ secrets.JIRA_USER }}'
16
+ jira_token: '${{ secrets.JIRA_TOKEN }}'
17
+ jira_project: 'TLCE'
18
+ jira_labels: 'infra,security,Operations'
19
+ github_token: '${{ secrets.GH_ORG_TOKEN }}'
20
+ sync_direction: 'gh2jira'
0 commit comments