Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add coana-guardrail and coana-analysis workflows #167

Merged
merged 1 commit into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/coana-analysis.yml
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}}
56 changes: 56 additions & 0 deletions .github/workflows/coana-guardrail.yml
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 }}
Loading