Skip to content

[Bugfix] Check processes using a given path only if the path exists. #13

[Bugfix] Check processes using a given path only if the path exists.

[Bugfix] Check processes using a given path only if the path exists. #13

name: Unsafe Patterns Checker
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]
jobs:
# Prevent security exclusions
security-exclusions-check:
runs-on: ubuntu-latest
steps:
- name: Check PR
uses: francesco-giordano/gh-pr-content-checker@v1.0.0
with:
diffDoesNotContainRegex: "\\bnosec\\b|\\bnosemgrep\\b"
skipLabels: skip-security-exclusions-check
# Prevent the use of recursive deletion.
recursive-deletion-check:
runs-on: ubuntu-latest
steps:
- name: Check PR (recursive true)
uses: francesco-giordano/gh-pr-content-checker@v1.0.0
with:
diffDoesNotContainRegex: "recursive true"
skipLabels: skip-recursive-deletion-check
- name: Check PR (rm -rf)
uses: francesco-giordano/gh-pr-content-checker@v1.0.0
with:
diffDoesNotContainRegex: "rm -rf"
skipLabels: skip-recursive-deletion-check