Skip to content

chore(deps-dev): bump sinon from 17.0.2 to 18.0.0 #4152

chore(deps-dev): bump sinon from 17.0.2 to 18.0.0

chore(deps-dev): bump sinon from 17.0.2 to 18.0.0 #4152

Workflow file for this run

name: Merge me!
on:
pull_request_target:
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
# Checking the actor will prevent your Action run failing on non-Dependabot
# PRs but also ensures that it only does work for Dependabot PRs.
if: github.actor == 'dependabot[bot]'
steps:
- name: 'Wait for status checks'
id: waitforstatuschecks
uses: WyriHaximus/github-action-wait-for-status@v1.8.0
with:
ignoreActions: Merge me!
checkInterval: 13
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# This first step will fail if there's no metadata and so the approval
# will not occur.
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2.1.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
# Here the PR gets approved.
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.MERGE_ME_GITHUB_TOKEN }}
# Finally, tell dependabot to merge the PR if all checks are successful
- name: Instruct dependabot to squash & merge
if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }}
uses: mshick/add-pr-comment@v2
with:
repo-token: ${{ secrets.MERGE_ME_GITHUB_TOKEN }}
allow-repeats: true
message: |
@dependabot squash and merge
env:
GITHUB_TOKEN: ${{ secrets.MERGE_ME_GITHUB_TOKEN }}