Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

MegaLinter

MegaLinter #36

Workflow file for this run

---
name: MegaLinter
on:
push:
pull_request:
branches: main
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
lint:
name: MegaLinter
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: MegaLinter
id: ml
uses: oxsecurity/megalinter@5199c6377b4cb7faff749a1971636f3343db9fe6 # pin@v7
env:
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}