chore(deps): bump undici from 6.26.0 to 6.27.0 in the npm_and_yarn group across 1 directory #157
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: Dependabot auto-merge | |
| on: pull_request | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| statuses: read | |
| jobs: | |
| code_check: | |
| name: 🔬 PR Checks | |
| if: github.event.pull_request.user.login == 'dependabot[bot]' | |
| uses: ./.github/workflows/check.yml | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| dependabot: | |
| runs-on: ubuntu-latest | |
| needs: code_check | |
| if: github.event.pull_request.user.login == 'dependabot[bot]' | |
| steps: | |
| - name: Wait for checks to pass | |
| uses: fountainhead/action-wait-for-check@v1.2.0 | |
| id: wait-for-check | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| checkName: lint-and-build | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Dependabot metadata | |
| id: metadata | |
| uses: dependabot/fetch-metadata@ffa630c65fa7e0ecfa0625b5ceda64399aea1b36 | |
| with: | |
| github-token: "${{ secrets.GITHUB_TOKEN }}" | |
| - name: Enable auto-merge for Dependabot PRs | |
| if: steps.wait-for-check.outputs.conclusion == 'success' | |
| run: gh pr merge --auto --squash --delete-branch "$PR_URL" | |
| env: | |
| PR_URL: ${{ github.event.pull_request.html_url }} | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |