Skip to content

Commit

Permalink
Merge pull request #8 from joshjohanning-org/security-checks
Browse files Browse the repository at this point in the history
Create security-checks.yml
  • Loading branch information
joshjohanning authored Oct 9, 2023
2 parents 803ff89 + 009f575 commit cb9bd95
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/security-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: security-checks # this doesn't show up in ui

on:
workflow_call:
inputs:
runs-on:
description: Platform to execute on
type: string
default: ubuntu-latest

jobs:
security-checks:
runs-on: ${{ inputs.runs-on }}
permissions:
contents: read

steps:
- uses: actions/checkout@v3

0 comments on commit cb9bd95

Please sign in to comment.