Skip to content

Commit

Permalink
Add workflow_dispatch to jobs.
Browse files Browse the repository at this point in the history
  • Loading branch information
gareth-palmer committed Jun 17, 2023
1 parent 5f0fe4f commit 2023023
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ on:
- 'xmlinfo'
- '.pylintrc'
- '.github/workflows/pylint.yml'
workflow_dispatch:

jobs:
lint:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ on:
- '.shellcheckrc'
- '.github/workflows/shellcheck.yml'

workflow_dispatch:

jobs:
lint:
name: Run shell linter
Expand Down
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ persistent=no
extension-pkg-whitelist=lxml

[MESSAGES CONTROL]
disable=missing-module-docstring,missing-class-docstring,missing-function-docstring,bad-whitespace,invalid-name,redefined-builtin,broad-except,multiple-statements,consider-using-sys-exit,too-many-branches,too-many-statements,too-many-arguments,line-too-long,too-many-locals,len-as-condition,wrong-import-position,unused-argument,duplicate-code,too-many-nested-blocks,arguments-differ
disable=missing-module-docstring,missing-class-docstring,missing-function-docstring,bad-whitespace,invalid-name,redefined-builtin,broad-except,multiple-statements,consider-using-sys-exit,too-many-branches,too-many-statements,too-many-arguments,line-too-long,too-many-locals,len-as-condition,wrong-import-position,unused-argument,duplicate-code,too-many-nested-blocks,arguments-differ,raise-missing-from

[REPORTS]
output-format=text

0 comments on commit 2023023

Please sign in to comment.