2023-01-11 16:59:09 +02:00
|
|
|
name: lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2023-08-04 14:37:13 +03:00
|
|
|
paths:
|
|
|
|
- ".github/workflows/**"
|
|
|
|
- ".github/renovate.json"
|
2023-01-11 16:59:09 +02:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
2023-01-23 09:36:25 +02:00
|
|
|
reviewdog:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-10-23 13:59:02 +03:00
|
|
|
uses: actions/checkout@v4
|
2023-01-23 09:36:25 +02:00
|
|
|
|
|
|
|
- name: Lint actions
|
|
|
|
uses: reviewdog/action-actionlint@v1
|
2023-08-04 14:37:13 +03:00
|
|
|
env:
|
|
|
|
SHELLCHECK_OPTS: "-e SC2086 -e SC2207 -e SC2128"
|
2023-01-23 09:36:25 +02:00
|
|
|
with:
|
|
|
|
reporter: github-pr-check
|
|
|
|
fail_on_error: true
|
2023-08-04 14:37:13 +03:00
|
|
|
|
|
|
|
renovate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-10-23 13:59:02 +03:00
|
|
|
uses: actions/checkout@v4
|
2023-08-04 14:37:13 +03:00
|
|
|
|
|
|
|
- name: Renovate Config Validator
|
|
|
|
uses: tj-actions/renovate-config-validator@v2
|
|
|
|
with:
|
|
|
|
config_file: .github/renovate.json
|