From 8f60523bc5e309048aa0eda36b5cf7f88454f6f5 Mon Sep 17 00:00:00 2001 From: Jake Scaltreto Date: Tue, 23 Jan 2024 15:13:09 -0500 Subject: [PATCH] chore(ci): implement code scanning (#541) --- .github/workflows/scan.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/scan.yml diff --git a/.github/workflows/scan.yml b/.github/workflows/scan.yml new file mode 100644 index 00000000..1c34f745 --- /dev/null +++ b/.github/workflows/scan.yml @@ -0,0 +1,14 @@ +name: Scan +on: + pull_request: + branches: [main] + push: + branches: [main] +jobs: + scan: + if: github.event_name == 'pull_request' + uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1 + + release-sbom: + if: github.event_name == 'push' + uses: circlefin/circle-public-github-workflows/.github/workflows/attach-release-assets.yaml@v1