Add footer section and update cursor styles; refactor login and dashb… #60
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
################################# | |
# @author K10s Open Source Team # | |
# @since 01/01/2025 # | |
################################# | |
name: Lint YAML Files | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint-yaml: | |
name: Lint YAML Files | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
statuses: write | |
steps: | |
# Step 1 | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Step 2 | |
- name: Lint YAML Files | |
uses: super-linter/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_YAML: true | |
VALIDATE_YAML_FILES: "kubernetes/**/*" |