Skip to content

Commit

Permalink
Updates to add bundler and brakeman gha action
Browse files Browse the repository at this point in the history
  • Loading branch information
aprilrieger committed Oct 25, 2023
1 parent fbad81f commit 7a66952
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/brakeman-audit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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/[email protected]
with:
webTarget: web
tag: latest
17 changes: 17 additions & 0 deletions .github/workflows/bundler-audit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Bundler Audit'
run-name: Bundler 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:
bundler-audit:
uses: scientist-softserv/actions/.github/workflows/[email protected]
with:
webTarget: web
tag: latest

0 comments on commit 7a66952

Please sign in to comment.