GitHub Security Alerts for Jira #498
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: GitHub Security Alerts for Jira | |
on: | |
schedule: | |
- cron: '0 2 * * *' | |
workflow_dispatch: | |
jobs: | |
syncSecurityAlerts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Sync security alerts to Jira issues" | |
uses: reload/[email protected] | |
env: | |
GH_SECURITY_TOKEN: ${{ secrets.GH_SECURITY_TOKEN }} | |
JIRA_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | |
JIRA_HOST: https://radixiot.atlassian.net | |
JIRA_USER: ${{ secrets.JIRA_API_EMAIL }} | |
JIRA_ISSUE_TYPE: Security | |
JIRA_ISSUE_LABELS: Dependabot | |
JIRA_PROJECT: RAD | |
JIRA_WATCHERS: [email protected] |