composer (master)(deps-dev): bump the development-dependencies group with 4 updates #203
Workflow file for this run
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
| # 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 |