Skip to content

fix(deps): update dependency intl to v0.20.1 #1305

fix(deps): update dependency intl to v0.20.1

fix(deps): update dependency intl to v0.20.1 #1305

Workflow file for this run

name: "Auto Merge"
on:
pull_request: ~
permissions:
contents: write
pull-requests: write
jobs:
tatsutakeinjp-bot:
runs-on: ubuntu-24.04
if: github.event.pull_request.user.login == 'tatsutakeinjp-bot[bot]'
steps:
# https://github.com/marketplace/actions/create-github-app-token
- name: Create GitHub App Token
uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1
id: app-token
with:
app-id: ${{ vars.BOT_APP_ID }}
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
- name: Enable auto-merge for Dependabot PRs
run: |
gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ steps.app-token.outputs.token }}