From e4aeac535b8aac32888e1fd734bc436b83170a3e Mon Sep 17 00:00:00 2001 From: April Rieger <63515648+aprilrieger@users.noreply.github.com> Date: Wed, 28 Feb 2024 22:28:22 -0800 Subject: [PATCH] add-brakeman-audit-to-ghas add-brakeman-audit-to-ghas --- .github/workflow/brakeman-audit.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflow/brakeman-audit.yml diff --git a/.github/workflow/brakeman-audit.yml b/.github/workflow/brakeman-audit.yml new file mode 100644 index 00000000..1701aeab --- /dev/null +++ b/.github/workflow/brakeman-audit.yml @@ -0,0 +1,18 @@ + +name: 'Brakeman Audit' +run-name: Brakeman Audit of ${{ github.ref_name }} by @${{ github.actor }} +on: + workflow_dispatch: + inputs: + debug_enabled: + type: boolean + description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' + required: false + default: false + +jobs: + brakeman-audit: + uses: scientist-softserv/actions/.github/workflows/brakeman-audit.yaml@v0.0.14 + with: + webTarget: web + tag: latest