Skip to content

Commit c1bfc70

Browse files
committed
chore: modify workflows to trigger on alpha-trigger/* and trip path filters
1 parent d9ecfa3 commit c1bfc70

12 files changed

Lines changed: 15 additions & 1 deletion

.github/workflows/Build-and-deploy-elasticsearch.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches:
55
- main
6+
- alpha-trigger/**
67
paths:
78
- "cdc-sandbox/elasticsearch/**"
89

.github/workflows/Build-and-deploy-modernization-api.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches:
55
- main
6+
- alpha-trigger/**
67
paths:
78
- "!libs/testing/**"
89
- "apps/modernization-api/**"

.github/workflows/Build-and-deploy-nbs-gateway.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches:
55
- main
6+
- alpha-trigger/**
67
paths:
78
- "apps/nbs-gateway/**"
89
- "gradle/libs.versions.toml"

.github/workflows/Build-and-deploy-nbs6-win-container.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Build NBS6 Windows Container Build
22
on:
3+
push:
4+
branches:
5+
- alpha-trigger/**
36
workflow_dispatch:
47
inputs:
58
nbs6_version:
@@ -18,7 +21,7 @@ jobs:
1821
uses: CDCgov/NEDSS-Workflows/.github/workflows/Build-windows-container.yaml@main
1922
with:
2023
image_name: "nbs6"
21-
nbs6_version: ${{inputs.nbs6_version}}
24+
nbs6_version: ${{ inputs.nbs6_version || '6.0.16.2' }}
2225
dockerfile_relative_path: "./cdc-sandbox/nbs6-win-container/"
2326
quay_repository: "quay.io/us-cdcgov/cdc-nbs-modernization"
2427
secrets:

.github/workflows/Build-and-deploy-nifi.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches:
55
- main
6+
- alpha-trigger/**
67
paths:
78
- "cdc-sandbox/nifi/**"
89

.github/workflows/Build-and-deploy-page-builder-api.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches:
55
- main
6+
- alpha-trigger/**
67
paths:
78
- "apps/question-bank/**"
89
- "libs/authentication/**"

apps/modernization-api/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,3 +205,4 @@ multipart form-data that easily hit the default `max-part-count` of Tomcat. A th
205205
accommodate Page Builder templates with large number of questions. Due to the customizability of Page Builder templates
206206
this limit may not be sufficient in some deployments. The `max-part-count` can be overridden using the
207207
`SERVER_TOMCAT_MAX_PART_COUNT` environment variable.
208+

apps/nbs-gateway/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,3 +145,4 @@ enabling the `oidc` profile. The profile requires a specific set of configuratio
145145
| nbs.security.oidc.uri | `${nbs.security.oidc.protocol}://${nbs.security.oidc.host}${nbs.security.oidc.base}` | The URI for the OIDC issuer |
146146
| nbs.security.oidc.client.id | | The client id used to initiate Authentication |
147147
| nbs.security.oidc.client.secret | | The client secret used to initiate Authentication |
148+

apps/question-bank/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,4 @@ the NBS `Auth_User` table.
7878
| nbs.security.oidc.host | | The hostname of the OIDC compatible Identity Provider |
7979
| nbs.security.oidc.base | `/realms/nbs-users` | The path to the OIDC endpoints |
8080
| nbs.security.oidc.uri | `${nbs.security.oidc.protocol}://${nbs.security.oidc.host}${nbs.security.oidc.base}` | The URI for the OIDC issuer |
81+

cdc-sandbox/elasticsearch/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ ENV xpack.security.enabled=false
66
ENV discovery.type=single-node
77

88
RUN /usr/share/elasticsearch/bin/elasticsearch-plugin install analysis-phonetic
9+

0 commit comments

Comments
 (0)