Skip to content

Commit a636850

Browse files
authored
Merge pull request #1285 from NASA-AMMOS/feat/release_branches
run release workflows on dev-a.b.c
2 parents f6dd79f + 18f8827 commit a636850

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

.github/workflows/cloc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ on:
44
pull_request:
55
branches:
66
- develop
7+
- dev-[0-9]+.[0-9]+.[0-9]+
78
push:
89
branches:
910
- develop
1011
tags:
1112
- v*
13+
workflow_dispatch:
1214

1315
jobs:
1416
cloc:

.github/workflows/pgcmp.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- "deployment/postgres-init-db/sql/**"
1818
branches:
1919
- develop
20+
- dev-[0-9]+.[0-9]+.[0-9]+
2021
tags:
2122
- v*
2223
workflow_dispatch:

.github/workflows/publish.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ on:
44
push:
55
branches:
66
- develop
7+
- dev-[0-9]+.[0-9]+.[0-9]+
78
tags:
89
- v*
10+
workflow_dispatch:
911

1012
env:
1113
REGISTRY: ghcr.io
@@ -137,19 +139,19 @@ jobs:
137139
with:
138140
image-ref: ${{ env.REGISTRY }}/${{ env.OWNER }}/${{ matrix.image }}:develop
139141
ignore-unfixed: true
140-
exit-code: '1'
141-
severity: 'CRITICAL'
142-
format: 'template'
142+
exit-code: "1"
143+
severity: "CRITICAL"
144+
format: "template"
143145
template: "@/contrib/html.tpl"
144146
scanners: "vuln"
145-
output: '${{ matrix.image }}-results.html'
147+
output: "${{ matrix.image }}-results.html"
146148

147149
- name: Upload ${{ matrix.image }} scan results
148150
if: always()
149151
uses: actions/upload-artifact@v3
150152
with:
151153
name: Vuln Scan Results
152-
path: '${{ matrix.image }}-results.html'
154+
path: "${{ matrix.image }}-results.html"
153155

154156
publish:
155157
name: gradle publish

.github/workflows/security-scan.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ on:
44
pull_request:
55
branches:
66
- develop
7+
- dev-[0-9]+.[0-9]+.[0-9]+
78
push:
89
branches:
910
- develop
1011
tags:
1112
- v*
13+
workflow_dispatch:
1214

1315
jobs:
1416
analyze:

.github/workflows/test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ on:
44
pull_request:
55
branches:
66
- develop
7+
- dev-[0-9]+.[0-9]+.[0-9]+
78
push:
89
branches:
910
- develop
1011
tags:
1112
- v*
13+
workflow_dispatch:
1214

1315
env:
1416
AERIE_USERNAME: "${{secrets.AERIE_USERNAME}}"

0 commit comments

Comments
 (0)