Skip to content

schubergphilis/mcvs-pr-validation-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MCVS-PR-validation-action

Mission Critical Vulnerability Scanner (MCVS) Pull Request (PR) Validation Action is a custom GitHub Action that consists of the following steps:

  • Nonempty PR description.

Usage

Create a .github/workflows/mcvs-pr-validation.yml file with the following content:

---
name: MCVS-PR-validation-action
"on":
  pull_request:
    types:
      - edited
      - opened
      - reopened
      - synchronize
  workflow_call:
permissions:
  contents: read
  pull-requests: read
jobs:
  MCVS-PR-validation-action:
    runs-on: ubuntu-24.04
    steps:
      # required as action performs some git actions under the hood. Without
      # a checkout, a: 'failed to run git: fatal: not a git repository' issue
      # will appear.
      - uses: actions/checkout@v4.1.7
      - uses: schubergphilis/mcvs-pr-validation-action@v0.1.2

About

Mission Critical Vulnerability Scanner (MCVS) Pull Request (PR) Validation Action. Validate whether a PR is compliant.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors