Skip to content

Commit ab8c22e

Browse files
authored
Merge branch 'develop' into stealc
2 parents 15fa7c8 + 7fe10bb commit ab8c22e

File tree

207 files changed

+5629
-391
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+5629
-391
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
* @patel-bhavin @ljstella @nasbench
2+
/response_templates/ @kbouchardherjavecgroup @ccl0utier

.github/labeler.yml

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,32 @@
11
Detections:
2-
- changed-files:
3-
- any-glob-to-any-file:
4-
- detections/**
2+
- changed-files:
3+
- any-glob-to-any-file:
4+
- detections/**
55

66
Stories:
7-
- changed-files:
8-
- any-glob-to-any-file: stories/*
7+
- changed-files:
8+
- any-glob-to-any-file: stories/*
99

1010
Playbooks:
11-
- changed-files:
12-
- any-glob-to-any-file: playbooks/*
11+
- changed-files:
12+
- any-glob-to-any-file: playbooks/*
1313

1414
Macros:
15-
- changed-files:
16-
- any-glob-to-any-file: macros/*
15+
- changed-files:
16+
- any-glob-to-any-file: macros/*
1717

1818
Lookups:
19-
- changed-files:
20-
- any-glob-to-any-file: lookups/*
19+
- changed-files:
20+
- any-glob-to-any-file: lookups/*
2121

2222
Datasource:
23-
- changed-files:
24-
- any-glob-to-any-file: data_sources/*
23+
- changed-files:
24+
- any-glob-to-any-file: data_sources/*
2525

2626
Baselines:
2727
- changed-files:
28-
- any-glob-to-any-file: baselines/*
28+
- any-glob-to-any-file: baselines/*
2929

30+
Response Templates:
31+
- changed-files:
32+
- any-glob-to-any-file: response_templates/*

.github/workflows/appinspect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
cp -r dist/*.tar.gz artifacts/
3838
3939
- name: store_artifacts
40-
uses: actions/upload-artifact@v5
40+
uses: actions/upload-artifact@v6
4141
with:
4242
name: content-latest
4343
path: |
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: build response templates
2+
on:
3+
pull_request:
4+
types: [opened, reopened, synchronize]
5+
push:
6+
branches:
7+
- develop
8+
jobs:
9+
build-response-templates:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Check out the repository code
13+
uses: actions/checkout@v5
14+
15+
- uses: actions/setup-python@v6
16+
with:
17+
python-version: '3.11'
18+
architecture: 'x64'
19+
20+
- name: Install Python Dependencies
21+
run: |
22+
pip install pyyaml jsonschema
23+
24+
- name: Running build and validation for response templates
25+
run: |
26+
echo "Generate merged response templates and manifest"
27+
python .github/workflows/response_templates/template_script.py -d ./response_templates -o ./response_templates/merged_response_templates -m
28+
echo "Run validation for response templates"
29+
python .github/workflows/response_templates/validate_response_templates.py -s .github/workflows/response_templates/mcopenapi_public.yml -d response_templates -m response_templates/merged_response_templates/manifest.json --merged-dir response_templates/merged_response_templates
30+
mkdir -p dist/api/response_templates
31+
cp response_templates/merged_response_templates/* dist/api/response_templates/
32+
33+
- name: store_artifacts
34+
uses: actions/upload-artifact@v5
35+
with:
36+
name: response-templates
37+
path: |
38+
dist/api/response_templates

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ jobs:
3131
mv dist/DA-ESS-ContentUpdate-latest.tar.gz artifacts/
3232
3333
- name: store_artifacts
34-
uses: actions/upload-artifact@v5
34+
uses: actions/upload-artifact@v6
3535
with:
3636
name: content-latest
3737
path: |
38-
artifacts/DA-ESS-ContentUpdate-latest.tar.gz
38+
artifacts/DA-ESS-ContentUpdate-latest.tar.gz
39+
dist/api

.github/workflows/datasource-dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
git status
4646
4747
- name: Create Pull Request
48-
uses: peter-evans/create-pull-request@v7
48+
uses: peter-evans/create-pull-request@v8
4949
with:
5050
token: ${{ secrets.DATA_SOURCES_DEPENDABOT }}
5151
commit-message: Updated TAs

0 commit comments

Comments
 (0)