feat: add script and workflow to trigger renovate via dashboard #23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Validate renovate config" | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/workflows/renovate-config-validator.yml | |
| - renovate.json | |
| - validator/action.yml | |
| - validate.sh | |
| workflow_call: | |
| inputs: | |
| config: | |
| description: "the relative path to the config file" | |
| type: string | |
| default: renovate.json | |
| jobs: | |
| renovate-config-validator: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| repository: bettermarks/renovate-config | |
| path: ${{ github.workspace }}/renovate-config | |
| - uses: ./renovate-config/validator | |
| with: | |
| config: ${{ inputs.config || 'renovate-config/renovate.json' }} |