GH Actions: Bump ramsey/composer-install from 3.1.1 to 4.0.0 #132
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
| name: Remove outdated labels | |
| on: | |
| # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target | |
| issues: | |
| types: | |
| - closed | |
| pull_request_target: | |
| types: | |
| - closed | |
| jobs: | |
| on-issue-close: | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == 'PHPCSStandards' && github.event.issue.state == 'closed' | |
| name: Clean up labels on issue close | |
| steps: | |
| - uses: mondeja/remove-labels-gh-action@b7118e4ba5dca74acf1059b3cb7660378ff9ab1a # v2.0.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| labels: | | |
| Status: awaiting feedback | |
| Status: wait for upstream | |
| on-pr-merge: | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == 'PHPCSStandards' && github.event.pull_request.merged == true | |
| name: Clean up labels on PR merge | |
| steps: | |
| - uses: mondeja/remove-labels-gh-action@b7118e4ba5dca74acf1059b3cb7660378ff9ab1a # v2.0.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| labels: | | |
| Status: awaiting feedback | |
| Status: wait for upstream | |
| on-pr-close: | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == 'PHPCSStandards' && github.event_name == 'pull_request_target' && github.event.pull_request.merged == false | |
| name: Clean up labels on PR close | |
| steps: | |
| - uses: mondeja/remove-labels-gh-action@b7118e4ba5dca74acf1059b3cb7660378ff9ab1a # v2.0.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| labels: | | |
| Status: awaiting feedback | |
| Status: wait for upstream |