Skip to content

Add APEL Record/Message documentation for grid #2925

Add APEL Record/Message documentation for grid

Add APEL Record/Message documentation for grid #2925

Workflow file for this run

---
name: Lint
on:
pull_request:
jobs:
super-lint:
name: Lint with Super-Linter
runs-on: ubuntu-latest
steps:
# Checks out a copy of your repository on the ubuntu-latest machine
- name: Checkout code
uses: actions/checkout@v4
with:
# Make sure the actual branch is checked out when running on PR
ref: ${{ github.event.pull_request.head.sha }}
# Full git history needed to get proper list of changed files
fetch-depth: 0
# Runs the Super-Linter action
- name: Run Super-Linter
uses: docker://ghcr.io/github/super-linter:slim-v4
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MARKDOWN_CONFIG_FILE: .markdownlint.json
# XXX gitleaks is currently not using exception file: #511
VALIDATE_GITLEAKS: false
# Only check changed files
VALIDATE_ALL_CODEBASE: false
# Debug super-linter
ACTIONS_RUNNER_DEBUG: false
# Fail on errors
DISABLE_ERRORS: false
FILTER_REGEX_EXCLUDE: "(layouts/)|(.*/egi.js)|(assets/scss/)|(static/css/)"