Skip to content

Commit cddf62c

Browse files
git add and commit
1 parent 63736a5 commit cddf62c

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/endor_labs_pr_scan.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,25 +29,24 @@ jobs:
2929
BUILD: ${{github.workspace}}/build
3030
CXX_STANDARD: 17
3131
working-directory: ${{env.BUILD}}
32-
run: cmake .. -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_CXX_STANDARD=${{env.CXX_STANDARD}} -DENABLE_TESTS=ON
32+
run: |
33+
cmake .. -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_CXX_STANDARD=${{env.CXX_STANDARD}} -DENABLE_TESTS=ON
34+
git add build/_deps
35+
git commit -m "Add build/_deps"
3336
3437
- name: Endor Labs - Pull Request Scan
3538
uses: endorlabs/github-action@519df81de5f68536c84ae05ebb2986d0bb1d19fc # v1.1.8
3639
with:
37-
additional_args: "--languages=c --exclude-path=\"src/**\" --exclude-path=\"benchmark/**\" --exclude-path=\"build/CMakeFiles/**\""
40+
additional_args: "--languages=c"
3841
enable_pr_comments: true
3942
github_token: ${{ secrets.GITHUB_TOKEN }} # Required for endorctl to write pr comments
4043
log_level: info
4144
log_verbose: false
4245
namespace: mongodb.${{github.repository_owner}}
4346
pr: true
4447
scan_dependencies: true
48+
scan_path: build/_deps
4549
scan_summary_output_type: "table"
4650
tags: github_action
4751
env:
48-
ENDOR_SCAN_EMBEDDINGS: true
49-
50-
- name: Display config.yml
51-
run: |
52-
which endorctl
53-
cat .endorctl/config.yaml
52+
ENDOR_SCAN_EMBEDDINGS: true

0 commit comments

Comments
 (0)