chore: Update Composer QA tooling dependencies #307
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: Auto Request Review | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - ready_for_review | |
| - reopened | |
| jobs: | |
| should-run: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| run: ${{ steps.check.outputs.run }} | |
| steps: | |
| - name: Skip for repository owner | |
| id: check | |
| run: | | |
| if [ "${{ github.event.pull_request.user.id }}" = "4849482" ]; then | |
| echo "run=false" >> $GITHUB_OUTPUT | |
| echo "::notice::Skipping auto request review - repository owner PR" | |
| else | |
| echo "run=true" >> $GITHUB_OUTPUT | |
| echo "::notice::Auto request review will execute - the PR author is not the repository owner" | |
| fi | |
| auto-request-review: | |
| needs: should-run | |
| if: needs.should-run.outputs.run == 'true' | |
| runs-on: ubuntu-latest | |
| name: Request a reviewer | |
| steps: | |
| - name: Request reviews based on configuration | |
| uses: necojackarc/auto-request-review@e89da1a8cd7c8c16d9de9c6e763290b6b0e3d424 # v0.13.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| config: .github/actions/auto-request-review/config.yml | |
| use_local: true |