mirror of
https://github.com/ivuorinen/sysvinit-service-generator.git
synced 2026-01-26 11:33:59 +00:00
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
38 lines
845 B
YAML
38 lines
845 B
YAML
---
|
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
name: PR Lint
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [master, main]
|
|
|
|
permissions: {}
|
|
|
|
env: # Comment env block if you don't want to apply fixes
|
|
# Apply linter fixes configuration
|
|
APPLY_FIXES: all
|
|
APPLY_FIXES_EVENT: all
|
|
APPLY_FIXES_MODE: commit
|
|
SARIF_REPORTER: true
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
concurrency:
|
|
group: ${{ github.ref }}-${{ github.workflow }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
contents: write
|
|
issues: write
|
|
packages: read
|
|
pull-requests: write
|
|
security-events: write
|
|
statuses: write
|
|
|
|
steps:
|
|
# https://github.com/ivuorinen/actions
|
|
- uses: ivuorinen/actions/pr-lint@cbfddb24339ba1e0129cc50ab5a0045131b8a2ba # v2026.01.13
|