Skip to content

Commit

Permalink
Improve
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfnl committed Dec 21, 2024
1 parent b3df046 commit ca01004
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/reusable-actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ on:
type: boolean
required: false
default: true
args:
description: 'Command line arguments to pass to the actionlint command.'
type: string
required: false
default: ''

jobs:
actionlint:
Expand All @@ -33,4 +38,4 @@ jobs:
- name: Check workflow files
uses: docker://rhysd/actionlint:latest
with:
args: -color -verbose ${{ inputs.shellcheck == false && '-shellcheck=' || '' }} ${{ inputs.pyflakes == false && '-pyflakes=' || '' }}
args: -color ${{ inputs.args }} ${{ inputs.shellcheck == false && '-shellcheck=' || '' }} ${{ inputs.pyflakes == false && '-pyflakes=' || '' }}

0 comments on commit ca01004

Please sign in to comment.