Skip to content

Configure Renovate

Configure Renovate #88

Workflow file for this run

name: SVG
on:
workflow_dispatch:
push:
paths:
- 'android/data/src/main/res/raw/*.svg'
- 'android/data/svg/**'
branches:
- main
pull_request:
paths:
- '.github/workflows/svg*.yml'
jobs:
validate:
name: "🦺 Validation"
uses: TWiStErRob/github-workflows/.github/workflows/validate.yml@19333c04e57739ec6074b09c6ca09c225c94dc09 # v1
instrumentation:
name: "🎨 Generate SVGs on" # / API ${{ matrix.api }} will be appended by used workflow.
needs: validate
uses: ./.github/workflows/svg-instrumentation.yml
report:
name: "📢 SVG Report"
needs: instrumentation
# The dependency job might be skipped, we don't need to run this job then.
if: success() || failure()
uses: ./.github/workflows/svg-report.yml