-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add coana-guardrail and coana-analysis workflows (#1197)
## Description Integrate Coana into CI/CD ## Documentation Does this require changes to the WorkOS Docs? E.g. the [API Reference](https://workos.com/docs/reference) or code snippets need updates. ``` [ ] Yes ``` If yes, link a related docs PR and add a docs maintainer as a reviewer. Their approval is required.
- Loading branch information
1 parent
19d1208
commit 877f3a3
Showing
2 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Coana Vulnerability Analysis | ||
|
||
on: | ||
schedule: | ||
# every day at 12 AM | ||
- cron: '0 0 * * *' | ||
workflow_dispatch: | ||
inputs: | ||
tags: | ||
description: 'Manually run vulnerability analysis' | ||
|
||
jobs: | ||
coana-vulnerability-analysis: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Run Coana CLI | ||
id: coana-cli | ||
run: | | ||
npx @coana-tech/cli run . \ | ||
--api-key ${{ secrets.COANA_API_KEY }} \ | ||
--repo-url https://github.com/${{github.repository}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Coana Guardrail | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
guardrail: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
steps: | ||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/changed-files@v44 | ||
with: | ||
separator: ' ' | ||
- name: Checkout the ${{github.base_ref}} branch | ||
uses: actions/checkout@v4 | ||
with: | ||
## checkout the base branch (usually master/main). | ||
ref: ${{github.base_ref}} | ||
- name: Use Node.js 20.x | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.x | ||
- name: Run Coana on the ${{github.base_ref}} branch | ||
run: | | ||
npx @coana-tech/cli run . \ | ||
--api-key ${{ secrets.COANA_API_KEY }} \ | ||
-o /tmp/main-branch \ | ||
--changed-files \ | ||
${{ steps.changed-files.outputs.all_changed_files }} \ | ||
--lightweight-reachability \ | ||
--disable-report-submission \ | ||
--repo-url https://github.com/${{github.repository}} | ||
- name: Checkout the current branch | ||
uses: actions/checkout@v4 | ||
with: | ||
clean: false | ||
- name: Run Coana on the current branch | ||
run: | | ||
npx @coana-tech/cli run . \ | ||
--api-key ${{ secrets.COANA_API_KEY }} \ | ||
-o /tmp/current-branch \ | ||
--changed-files \ | ||
${{ steps.changed-files.outputs.all_changed_files }} \ | ||
--lightweight-reachability \ | ||
--disable-report-submission \ | ||
--repo-url https://github.com/${{github.repository}} | ||
- name: Run Report Comparison | ||
run: | | ||
npx @coana-tech/cli compare-reports \ | ||
--api-key ${{ secrets.COANA_API_KEY }} \ | ||
--no-block \ | ||
/tmp/main-branch/coana-report.json \ | ||
/tmp/current-branch/coana-report.json | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |