Create sample-scanner.yml

This commit is contained in:
Patrick Rodgers 2022-09-08 09:36:24 -04:00 committed by GitHub
parent e1760ad608
commit 8c087fd919
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

18
.github/workflows/sample-scanner.yml vendored Normal file
View File

@ -0,0 +1,18 @@
# This is a basic workflow to help you get started with Actions
name: Sample Scanner
# Controls when the workflow will run
on:
workflow_dispatch:
jobs:
sample-scan:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3
- name: Sample Scanner
uses: pnp/action-sample-scanner@main
with:
dirs: '["samples"]'
token: ${{ secrets.GITHUB_TOKEN }}