Skip to content

Bump @vercel/ncc from 0.38.1 to 0.38.2 #315

Bump @vercel/ncc from 0.38.1 to 0.38.2

Bump @vercel/ncc from 0.38.1 to 0.38.2 #315

Workflow file for this run

name: Automerge PRs
on:
pull_request_target:
branches: [ main ]
types: [ opened ]
jobs:
enableAutoMerge:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Authenticate via APP
id: authentication
uses: ./
with:
appId: ${{ secrets.APP_ID }}
clientId: ${{ secrets.CLIENT_ID }}
privateKey: ${{ secrets.PRIVATE_KEY }}
installationId: ${{ secrets.INSTALLATION_ID }}
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{ steps.authentication.outputs.token }}