forked from NebulaTris/oss101
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f9323e8
commit 3089b57
Showing
1 changed file
with
5 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
--- | ||
### Super Linter | ||
name: Linting Code Base using Super Linter | ||
on: | ||
push: | ||
branches-ignore: [ "main" ] | ||
branches-ignore: [main] | ||
pull_request: | ||
branches: [ "main" ] | ||
branches: [main] | ||
jobs: | ||
build: | ||
name: Lint Code Base | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
with: | ||
# Checkout whole repo for Lint | ||
fetch-depth: 0 | ||
|
||
fetch-depth: 0 | ||
- name: Lint Whole Pull request | ||
uses: github/super-linter@v4 | ||
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. | ||
# DEFAULT_BRANCH: [ "main", "Feat/Linter", "Test/Linter", "Normturtle-details", "Third-Branch" ] | ||
VALIDATE_MARKDOWN: false | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|