Skip to content
This repository was archived by the owner on Aug 21, 2026. It is now read-only.

composer (master)(deps-dev): bump the development-dependencies group with 3 updates #138

composer (master)(deps-dev): bump the development-dependencies group with 3 updates

composer (master)(deps-dev): bump the development-dependencies group with 3 updates #138

Workflow file for this run

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
# file-version: 1.0
name: "Cleanup caches by a branch"
on:
pull_request:
types:
- "closed"
workflow_dispatch:
permissions:
contents: read
actions: write
jobs:
cleanup:
name: "Cleanup Caches"
uses: "mimmi20/ci/.github/workflows/cleanup-cache.yml@8.3"
with:
repository: ${{ github.repository }}
ref: ${{ github.event_name == 'pull_request' && format('refs/pull/{0}/merge', github.event.pull_request.number) || github.ref }}
# This is a meta job to avoid to have to constantly change the protection rules
# whenever we touch the matrix.
cleanup-status:
name: "Cleanup Status"
runs-on: "ubuntu-latest"
if: always()
needs:
- "cleanup"
steps:
- name: Failing run
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'skipped') || contains(needs.*.result, 'cancelled') }}
run: exit 1
- name: Successful run
if: ${{ !(contains(needs.*.result, 'failure')) && !(contains(needs.*.result, 'skipped')) && !(contains(needs.*.result, 'cancelled')) }}
run: exit 0