Skip to content

Commit 0252c2b

Browse files
authored
Merge pull request #10 from triplelift-internal/TLCE-2845-secruty-ghas-jira
TLCE-2845 - Create security-ghas-to-jira.yml
2 parents 9ae84a9 + c468d28 commit 0252c2b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)