Skip to content

Commit 20c944c

Browse files
committed
Merge branch 'master' into bugs/asset-reference
2 parents 3f7175c + 4949935 commit 20c944c

File tree

6 files changed

+32
-26
lines changed

6 files changed

+32
-26
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
name: "CodeQL"
1313

1414
on:
15-
push:
16-
branches: '*'
1715
pull_request:
1816
# The branches below must be a subset of the branches above
1917
branches: '*'

.github/workflows/jira.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Create JIRA ISSUE
2+
on:
3+
pull_request:
4+
types: [opened]
5+
jobs:
6+
security:
7+
if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'snyk-bot' || contains(github.event.pull_request.head.ref, 'snyk-fix-') || contains(github.event.pull_request.head.ref, 'snyk-upgrade-')}}
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Login into JIRA
12+
uses: atlassian/gajira-login@master
13+
env:
14+
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
15+
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
16+
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
17+
- name: Create a JIRA Issue
18+
id: create
19+
uses: atlassian/gajira-create@master
20+
with:
21+
project: ${{ secrets.JIRA_PROJECT }}
22+
issuetype: ${{ secrets.JIRA_ISSUE_TYPE }}
23+
summary: |
24+
${{ github.event.pull_request.title }}
25+
description: |
26+
PR: ${{ github.event.pull_request.html_url }}
27+
28+
fields: "${{ secrets.JIRA_FIELDS }}"

.github/workflows/sast-scan.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
name: SAST Scan
22
on:
3-
push:
4-
branches:
5-
- '*'
63
pull_request:
74
types: [opened, synchronize, reopened]
85
jobs:
@@ -11,4 +8,4 @@ jobs:
118
steps:
129
- uses: actions/checkout@v2
1310
- name: Horusec Scan
14-
run: docker run -v /var/run/docker.sock:/var/run/docker.sock -v $(pwd):/src horuszup/horusec-cli:latest horusec start -p /src -P $(pwd)
11+
run: docker run -v /var/run/docker.sock:/var/run/docker.sock -v $(pwd):/src horuszup/horusec-cli:latest horusec start -p /src -P $(pwd)

.github/workflows/sca-monitor.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/sca-scan.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
name: Source Composition Analysis Scan
22
on:
3-
push:
4-
branches:
5-
- master
63
pull_request:
74
types: [opened, synchronize, reopened]
85
jobs:
@@ -14,3 +11,5 @@ jobs:
1411
uses: snyk/actions/node@master
1512
env:
1613
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
14+
with:
15+
args: --all-projects

.github/workflows/secrets-scan.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
name: Secrets Scan
22
on:
3-
push:
4-
branches:
5-
- '*'
63
pull_request:
74
types: [opened, synchronize, reopened]
85
jobs:
@@ -11,4 +8,4 @@ jobs:
118
steps:
129
- uses: actions/checkout@v2
1310
- name: Gittyleaks
14-
uses: gupy-io/gittyleaks-action@v0.1
11+
uses: gupy-io/gittyleaks-action@v0.1

0 commit comments

Comments
 (0)