-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed Jira and Confluence scans to also create DLP Jira tickets wit…
…h the findings
- Loading branch information
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,14 @@ jobs: | |
platform-url: 'https://spark1us.atlassian.net' | ||
report-format: "sarif" | ||
report-file: "confluence_secret_report.sarif" | ||
- name: Create JIRA tickets for n0s1 findings | ||
uses: GeorgeDavis-Ibexlabs/[email protected] | ||
with: | ||
jira_cloud_url: "https://spark1us.atlassian.net" | ||
jira_auth_email: "[email protected]" | ||
jira_project_key: "DLP" | ||
jira_api_token: ${{ secrets.JIRA_TOKEN }} | ||
jira_default_issue_labels: "n0s1,credential-leak" | ||
- name: Display SARIF result | ||
run: | | ||
cat confluence_secret_report.sarif | jq | head -n 20 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,14 @@ jobs: | |
platform-url: 'https://spark1us.atlassian.net' | ||
report-format: "sarif" | ||
report-file: "jira_secret_report.sarif" | ||
- name: Create JIRA tickets for n0s1 findings | ||
uses: GeorgeDavis-Ibexlabs/[email protected] | ||
with: | ||
jira_cloud_url: "https://spark1us.atlassian.net" | ||
jira_auth_email: "[email protected]" | ||
jira_project_key: "DLP" | ||
jira_api_token: ${{ secrets.JIRA_TOKEN }} | ||
jira_default_issue_labels: "n0s1,credential-leak" | ||
- name: Display SARIF result | ||
run: | | ||
cat jira_secret_report.sarif | jq | head -n 20 | ||
|