Skip to content

Commit

Permalink
#69 add filter regex (#76)
Browse files Browse the repository at this point in the history
* #69 add filter regex

* test

* #69 cleanup linting errors

* #69 remove test
  • Loading branch information
kernelsam authored Jan 9, 2024
1 parent 1d0c93f commit 75a3d1e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/linters/.yaml-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ rules:
line-length:
level: warning
allow-non-breakable-inline-mappings: true
truthy: disable
truthy: disable
9 changes: 7 additions & 2 deletions .github/workflows/linter.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
name: 'linter'

on:
on:
workflow_call:
inputs:
filter-regex-include:
default: ".*"
description: 'Regular expression defining which files will be processed by linters.'
required: false
type: string
validate-all-codebase:
default: false
description: 'Lint all files or only modified: true/false'
description: 'Lint all files or only modified: true/false.'
required: false
type: boolean

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/make-go-github-file.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 'make go github file'

on:
on:
workflow_call:
secrets:
SENZING_GITHUB_GPG_PRIVATE_KEY:
Expand Down Expand Up @@ -29,4 +29,4 @@ jobs:
- name: Make github.go file
uses: senzing-factory/github-action-make-go-github-file@main
with:
actor: ${{ secrets.SENZING_GITHUB_ACTOR }}
actor: ${{ secrets.SENZING_GITHUB_ACTOR }}

0 comments on commit 75a3d1e

Please sign in to comment.