Fix JIRA form processing logic to not skip pushing new findings when finding_jira_sync is enabled #10793
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: Shellcheck | |
| on: | |
| pull_request: | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - name: Run ShellCheck | |
| uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0 | |
| with: | |
| version: 'v0.11.0' # renovate: datasource=github-releases depName=koalaman/shellcheck versioning=loose | |
| env: | |
| SHELLCHECK_OPTS: -e SC1091 -e SC2086 # TODO: fix following findings |