Skip to content

DCV Library Initial Implementation #1

DCV Library Initial Implementation

DCV Library Initial Implementation #1

Workflow file for this run

name: fossa
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ "master" ]
schedule:
- cron: '31 19 * * 4'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
fossa-scan:
# The type of runner that the job will run on
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]' # Skip FOSSA for Dependabot PRs
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: "Checkout Code"
uses: actions/checkout@v2
- name: "Run FOSSA Scan"
uses: fossa-contrib/[email protected]
with:
fossa-api-key: ${{ secrets.FOSSA_API_KEY }}
project: domain-control-validation