Skip to content

SRE-279: Increase Renovate PR concurrent limit from 15 to 25 #13

SRE-279: Increase Renovate PR concurrent limit from 15 to 25

SRE-279: Increase Renovate PR concurrent limit from 15 to 25 #13

Workflow file for this run

name: Lint
on:
pull_request:
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
renovate:
name: Validate renovate config
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Validate renovate config
run: |
npm install --global renovate
if ! renovate-config-validator; then
echo ''
echo ''
echo 'ℹ️ ℹ️ ℹ️'
echo 'Please fix the above errors locally for the check to pass.'
echo 'If you don’t see them, try merging target branch into yours.'
echo 'ℹ️ ℹ️ ℹ️'
exit 1
fi