-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into tylertitsworth/coverage
- Loading branch information
Showing
10 changed files
with
167 additions
and
135 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,37 +12,38 @@ | |
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
--- | ||
name: Lint | ||
permissions: read-all | ||
on: | ||
merge_group: null | ||
pull_request: null | ||
pull_request_target: | ||
types: [opened, edited, reopened, synchronize] | ||
branches: [main] | ||
push: | ||
branches: | ||
- develop | ||
- main | ||
- main | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: super-linter/super-linter/[email protected] | ||
env: | ||
# To report GitHub Actions status checks | ||
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }} | ||
GITHUB_ACTIONS_COMMAND_ARGS: '-ignore SC.*' | ||
VALIDATE_BASH_EXEC: false | ||
VALIDATE_CHECKOV: false | ||
VALIDATE_HTML: false | ||
VALIDATE_KUBERNETES_KUBECONFORM: false | ||
VALIDATE_NATURAL_LANGUAGE: false | ||
VALIDATE_PYTHON_FLAKE8: false | ||
VALIDATE_PYTHON_MYPY: false | ||
VALIDATE_PYTHON_RUFF: false | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ 'refs/pull/${{ github.event.number }}/merge' || 'main' }} | ||
- uses: super-linter/super-linter/[email protected] | ||
env: | ||
# To report GitHub Actions status checks | ||
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }} | ||
GITHUB_ACTIONS_COMMAND_ARGS: '-ignore SC.*' | ||
VALIDATE_BASH_EXEC: false | ||
VALIDATE_CHECKOV: false | ||
VALIDATE_HTML: false | ||
VALIDATE_KUBERNETES_KUBECONFORM: false | ||
VALIDATE_NATURAL_LANGUAGE: false | ||
VALIDATE_PYTHON_FLAKE8: false | ||
VALIDATE_PYTHON_MYPY: false | ||
VALIDATE_PYTHON_RUFF: false |
Oops, something went wrong.