mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Merge pull request #9482 from ToolJet/feat/dependabot-csv
Dependabot csv exporter
This commit is contained in:
commit
a8b59db7aa
1 changed files with 25 additions and 0 deletions
25
.github/workflows/dependabot-csv.yml
vendored
Normal file
25
.github/workflows/dependabot-csv.yml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
name: Dependatbot csv exportor
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
jobs:
|
||||
|
||||
Exportor:
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
steps:
|
||||
- name: Export Dependabot alerts
|
||||
uses: ambilykk/dependabot-alert-export@v1.0
|
||||
with:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
org_name: 'ToolJet'
|
||||
repo_name: 'ToolJet'
|
||||
csv_path: data/vulnerability.csv
|
||||
|
||||
- name: Upload Vulnerability report
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: vulnerability_report
|
||||
path: data/vulnerability.csv
|
||||
Loading…
Reference in a new issue