-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2968 from threefoldtech/development_2.6_audit_fix…
…_workflow
- Loading branch information
Showing
1 changed file
with
24 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,24 @@ | ||
# When the action is executed, it runs yarn audit command in all the paths that is mentioned in the input. The exit codes of the commands are compared and if it is greater than 7 (only high severity as of now), the action will try to fetch the open issues in the repo with the label provided in the input. The label is mandatory to prevent from creating duplicate issues. If there are no open issues with the given label in open state, the action will try to create a Github Issue with the details provided in the input. | ||
|
||
name: Full Clients Audit | ||
|
||
on: | ||
push: | ||
branches: [development, development_2.6] | ||
pull_request: | ||
branches: [development, development_2.6] | ||
|
||
jobs: | ||
audit-and-open-issue: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Yarn Audit | ||
uses: pragatheeswarans/yarn-audit-action@v1.0.0 | ||
with: | ||
token: ${{ github.token }} | ||
label: 'audit' | ||
title: "${{ github.workflow }}: Critical Security Vulnerability Identified" | ||
description: 'High severity issues are identified in the repo.' | ||
paths: | | ||
. |