Skip to content

Bump nuqs from 2.0.3 to 2.0.4 #1314

Bump nuqs from 2.0.3 to 2.0.4

Bump nuqs from 2.0.3 to 2.0.4 #1314

Workflow file for this run

name: Dependabot auto-merge
on:
pull_request:
merge_group:
permissions:
contents: read
pull-requests: read
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.BOT_APP_ID }}
private_key: ${{ secrets.BOT_PRIVATE_KEY }}
- name: Dependabot metadata
id: dependabot_metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: ${{ steps.generate_token.outputs.token }}
- name: Authenticate cli
run: echo "${{ steps.generate_token.outputs.token }}" | gh auth login --with-token
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}