Skip to content

chore(deps): bump rand_core from 0.10.0 to 0.10.1 #41

chore(deps): bump rand_core from 0.10.0 to 0.10.1

chore(deps): bump rand_core from 0.10.0 to 0.10.1 #41

Workflow file for this run

name: Dependabot auto-merge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
wait-for-checks:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Wait for CI to complete
uses: lewagon/wait-on-check-action@v1.7.0
with:
ref: ${{ github.event.pull_request.head.sha }}
running-workflow-name: "wait-for-checks"
repo-token: ${{ secrets.GITHUB_TOKEN }}
allowed-conclusions: success,skipped,cancelled,neutral
wait-interval: 10
dependabot:
runs-on: ubuntu-latest
needs: wait-for-checks
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v3
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}