mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-08-03 21:58:50 +00:00
30 lines
686 B
YAML
30 lines
686 B
YAML
name: renovate-config
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.github/renovate.json5'
|
|
branches:
|
|
- main
|
|
- 'releases-**'
|
|
pull_request:
|
|
paths:
|
|
- '.github/renovate.json5'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@c6295a65d1254861815972266d5933fd6e532bdf # v2.11.1
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
|
|
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
|
|
- run: npx --package renovate -c 'renovate-config-validator'
|