Skip to content

build(deps): bump tokio from 1.29.0 to 1.29.1 #1

build(deps): bump tokio from 1.29.0 to 1.29.1

build(deps): bump tokio from 1.29.0 to 1.29.1 #1

Workflow file for this run

name: Dependabot
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run the Docker containers
run: docker build -t $REPOSITORY_NAME .
env:
REPOSITORY_NAME: ${{ github.event.repository.name }}
auto-merge:
needs: build
if: ${{ github.actor == 'dependabot[bot]' }}
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Auto-merge Dependabot PRs
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}