Skip to content

chore: Configure Renovate - autoclosed #11

chore: Configure Renovate - autoclosed

chore: Configure Renovate - autoclosed #11

Workflow file for this run

---
#########################
#########################
## GitHub Super-Linter ##
#########################
#########################
name: Super-Linter
#
# Documentation:
# https://git.io/workflow-syntax-for-github-actions
#
#############################
# Start the job on all push #
#############################
on:
push:
pull_request:
branches: [main]
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v3
with:
# Linter requires full repository history for analysis
fetch-depth: 0
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN || secrets.PAT }}