My Shared GitHub Actions & Configurations.
Actions should be linked using the uses keyword. Read more from the Reusing workflows article Calling a reusable workflow and jobs.<job_id>.steps[*].uses configuration documentation.
uses
jobs: CompressImages: uses: ivuorinen/.github/.github/workflows/compress-images.yml ReusableMatrixJobForComposerInstall: strategy: matrix: target: ['8.0', '8.1'] uses: ivuorinen/.github/.github/workflows/composer-install.yml@main with: php-versions: ${{ matrix.target }}
Go through the onboarding process and save the following snippet as renovate.json in the project root.
renovate.json
{ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["github>ivuorinen/.github:renovate-config"] }