Skip to content

style: fix whitespace in copier.yaml template #65

style: fix whitespace in copier.yaml template

style: fix whitespace in copier.yaml template #65

Workflow file for this run

# This file is @generated by <https://github.com/liblaf/copier-shared>.
# DO NOT EDIT!
# https://github.com/oxsecurity/megalinter/blob/main/mega-linter-runner/generators/mega-linter/templates/mega-linter.yml
# https://megalinter.io
name: MegaLinter
on:
push:
pull_request:
jobs:
mega-linter:
name: MegaLinter
permissions:
contents: write # commit fix
issues: write # https://megalinter.io/latest/reporters/GitHubCommentReporter/
pull-requests: write # https://megalinter.io/latest/reporters/GitHubCommentReporter/
security-events: write # https://megalinter.io/latest/reporters/SarifReporter/
statuses: write # https://megalinter.io/latest/reporters/GitHubStatusReporter/
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-mega-linter
cancel-in-progress: true
steps:
- id: auth
name: Auth App
uses: liblaf/actions/auth-app@main
with:
app-id: ${{ secrets.GH_APP_ID }}
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ steps.auth.outputs.token }}
- name: MegaLinter
uses: liblaf/actions/mega-linter@main
with:
token: ${{ steps.auth.outputs.token }}
- name: Remove MegaLinter Reports
run: sudo rm --force --recursive "mega-linter.log" "megalinter-reports/"
- name: Auto Commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore(mega-linter): apply linters fixes"
add_options: --update
commit_user_name: ${{ steps.auth.outputs.committer-name }}
commit_user_email: ${{ steps.auth.outputs.committer-email }}
commit_author: ${{ steps.auth.outputs.author }}