Skip to content

fix(deps): update renovate/renovate docker tag 43.2.6 → 43.2.8 #2515

fix(deps): update renovate/renovate docker tag 43.2.6 → 43.2.8

fix(deps): update renovate/renovate docker tag 43.2.6 → 43.2.8 #2515

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Pull Request
on:
merge_group:
pull_request:
jobs:
prepare:
name: Prepare
runs-on:
group: default
outputs:
changed-files: ${{ steps.changed-files.outputs.changed_files }}
steps:
- name: Get changed files
uses: bjw-s-labs/action-changed-files@015416e33c709af88f84a4496f4030c1f0ef212e # v0.5.0
id: changed-files
with:
path: apps
include_only_directories: true
max_depth: 1
build:
if: ${{ needs.prepare.outputs.changed-files != '[]' }}
name: Build ${{ matrix.app }}
needs:
- prepare
uses: ./.github/workflows/app-builder.yaml
permissions:
attestations: write
contents: read
id-token: write
packages: write
secrets: inherit
strategy:
matrix:
app: ${{ fromJSON(needs.prepare.outputs.changed-files) }}
fail-fast: false
max-parallel: 8
with:
app: ${{ matrix.app }}
release: false
status:
if: ${{ !cancelled() }}
name: Build Success
needs:
- build
runs-on:
group: default
steps:
- name: Any jobs failed?
if: ${{ contains(needs.*.result, 'failure') }}
run: |-
exit 1
- name: All jobs passed or skipped?
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: |-
echo "All jobs passed or skipped" && echo "${{ toJSON(needs.*.result) }}"