Skip to content

Update pipeline.yaml #5

Update pipeline.yaml

Update pipeline.yaml #5

Workflow file for this run

name: Pipeline
on: [push]
jobs:
pipeline:
runs-on: ubuntu-latest
permissions:
contents: write
packages: read
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Super-linter
uses: super-linter/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.WF_TOKEN }}
VALIDATE_BASH: false
FIX_CHECKOV: true
FIX_MARKDOWN: true
FIX_MARKDOWN_PRETTIER: true
FIX_NATURAL_LANGUAGE: true
FIX_SHELL_SHFMT: true
FIX_YAML_PRETTIER: true
- name: Commit and push linting fixes
if: >
github.ref_name != github.event.repository.default_branch
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: ${{ github.head_ref || github.ref }}
commit_message: "chore: fix linting issues"
commit_user_name: Wesley Scholl
commit_user_email: [email protected]