Skip to content

added content to about page #22

added content to about page

added content to about page #22

Workflow file for this run

name: Lint Code Base
on:
push: null
pull_request: null
jobs:
fix-lint-issues:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: write
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: "main"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FIX_PYTHON_BLACK: true
- name: Commit and push linting fixes
if: >
github.event_name == 'pull_request' &&
github.ref_name != github.event.repository.default_branch
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: ${{ github.event.pull_request.head.ref || github.head_ref || github.ref }}
commit_message: "chore: fix linting issues"
commit_user_name: super-linter
commit_user_email: [email protected]