Skip to content

docs: mark changelog as generated #3

docs: mark changelog as generated

docs: mark changelog as generated #3

Workflow file for this run

---
name: PR Checks
on:
pull_request:
concurrency:
# For pull requests, cancel all currently-running jobs for this workflow
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
name: Super Lint Codebase
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Super-Linter
run: cat .github/super-linter.env >> "$GITHUB_ENV"
- name: Lint Codebase
uses: super-linter/super-linter/slim@v5.7.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}