CLOUDDST-32791: Add fbc-inject-lifecycle to FBC pipeline #19696
Workflow file for this run
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
| # yamllint disable-file | |
| # <TEMPLATED FILE!> | |
| # This file comes from the templates at https://github.com/konflux-ci/task-repo-shared-ci. | |
| # Please consider sending a PR upstream instead of editing the file directly. | |
| # See the SHARED-CI.md document in this repo for more details. | |
| name: Checkton | |
| "on": | |
| pull_request: | |
| branches: [main] | |
| merge_group: | |
| types: [checks_requested] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| # Differential Checkton requires full git history | |
| fetch-depth: 0 | |
| - name: Run Checkton | |
| id: checkton | |
| uses: chmeliik/checkton@c24110a11ba3d4acb90964be57fc1177fed2918f # v0.4.0 | |
| with: | |
| # Set to false when re-enabling SARIF uploads | |
| fail-on-findings: true | |
| find-copies-harder: true | |
| exclude-regex: ^task-generator | |
| # Currently, code scanning alerts annoyingly stay open even if you fix them. | |
| # Don't upload SARIF until https://github.com/orgs/community/discussions/132787 is resolved. | |
| # - name: Upload SARIF file | |
| # uses: github/codeql-action/upload-sarif@v3 | |
| # with: | |
| # sarif_file: ${{ steps.checkton.outputs.sarif }} | |
| # # Avoid clashing with ShellCheck | |
| # category: checkton |