Skip to content

Commit

Permalink
Merge pull request #1037 from syself/kr/fix-pr-verify-action
Browse files Browse the repository at this point in the history
🌱 aviod multiple steps of validating renovate config
  • Loading branch information
batistein authored Nov 6, 2023
2 parents 1f67c6f + 1e8b281 commit ed2e26f
Showing 1 changed file with 5 additions and 27 deletions.
32 changes: 5 additions & 27 deletions .github/workflows/pr-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,34 +34,12 @@ jobs:
node-version: "18"
- name: Install renovate
run: npm i -g [email protected] # TODO update this via renovatebot

- name: Validate config
run: renovate-config-validator
env:
RENOVATE_CONFIG_FILE: .github/renovate.json5
- name: Validate config
run: renovate-config-validator
env:
RENOVATE_CONFIG_FILE: .github/renovate/approval.json5
- name: Validate config
run: renovate-config-validator
env:
RENOVATE_CONFIG_FILE: .github/renovate/commitMessage.json5
- name: Validate config
run: renovate-config-validator
env:
RENOVATE_CONFIG_FILE: .github/renovate/golang.json5
- name: Validate config
run: renovate-config-validator
env:
RENOVATE_CONFIG_FILE: .github/renovate/groups.json5
- name: Validate config
run: renovate-config-validator
env:
RENOVATE_CONFIG_FILE: .github/renovate/labels.json5
- name: Validate config
run: renovate-config-validator
env:
RENOVATE_CONFIG_FILE: .github/renovate/regexManagers.json5
run: |
for file in $(find . -name "*.json5"); do
renovate-config-validator ${file}
done
- name: Generate Token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2
Expand Down

0 comments on commit ed2e26f

Please sign in to comment.