Added contributor details for sumitkumar005 #107
Workflow file for this run
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
--- | |
### Super Linter | |
name: Linting Code Base using Super Linter | |
on: | |
# push: | |
# # branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
# To report GitHub Actions status checks | |
statuses: write | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
# Checkout whole repo for Lint | |
fetch-depth: 0 | |
- name: Lint Whole Repository | |
# Slim version do not have rust, pwsh, c#, armttk , dotenv, rust linters and its bit fast | |
# if want to use normal version then just remove SLIM before @ till / as ../super-linter@Versoin | |
uses: super-linter/super-linter/[email protected] | |
env: | |
# ALL_codebase parse the entire repository and find all files to validate across all types. NOTE: When set to false, only new or edited files will be parsed for validation. | |
VALIDATE_ALL_CODEBASE: false # this work on changed made on that specific commit as :Diff | |
VALIDATE_MARKDOWN: false | |
VALIDATE_YAML: false | |
VALIDATE_NATURAL_LANGUAGE: false # disable linting Text/Markdown | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |