From b6dfc61e2353424c893d8a4e9c684bab68248b7f Mon Sep 17 00:00:00 2001 From: Gabe Stocco <98900+gfs@users.noreply.github.com> Date: Mon, 11 Mar 2024 15:02:31 -0700 Subject: [PATCH] Create testAction.yml --- .github/workflows/testAction.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/testAction.yml diff --git a/.github/workflows/testAction.yml b/.github/workflows/testAction.yml new file mode 100644 index 00000000..578450e5 --- /dev/null +++ b/.github/workflows/testAction.yml @@ -0,0 +1,26 @@ +# Testing DevSkim Action +name: Test DevSkim Action + +on: + # Runs on pushes targeting the default branch + push: + branches: ["gfs/TestDevSkimAction"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + +jobs: + Check-Changelog: + name: TestAction + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: microsoft/DevSkim-Action@v1 + - uses: github/codeql-action/upload-sarif@v2 + with: + sarif_file: devskim-results.sarif + ignore_globs: '**/one/*.cs' \ No newline at end of file