docs: mark changelog as generated #3
Workflow file for this run
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
--- | |
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 }} |