Skip to content

Commit

Permalink
Removing inputs from reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nchiasson-dgi committed Jul 27, 2023
1 parent 5bd4741 commit 08ac85e
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,6 @@
name: Code Linting
on:
workflow_call:
inputs:
path:
required: false
type: string
extensions:
required: false
type: string
suffix:
required: false
type: string
lint:
required: false
type: string
phpcs-ignore:
required: false
type: string
phpcpd-exclude:
required: false
type: string

jobs:
Lint:
Expand All @@ -30,10 +11,3 @@ jobs:
uses: actions/checkout@v3
- name: Run CodeSniffer
uses: discoverygarden/CodeSniffer@v1
with:
path: ${{ inputs.path }}
extensions: ${{ inputs.extensions }}
suffix: ${{ inputs.suffix }}
lint: ${{ inputs.lint }}
phpcs-ignore: ${{ inputs.phpcs-ignore }}
phpcpd-exclude: ${{ inputs.phpcpd-exclude }}

0 comments on commit 08ac85e

Please sign in to comment.