Skip to content

chore(deps): update dependency typescript to v5.5.2 #15

chore(deps): update dependency typescript to v5.5.2

chore(deps): update dependency typescript to v5.5.2 #15

Workflow file for this run

name: "Auto Merge"
on:
pull_request: ~
permissions:
contents: write
pull-requests: write
jobs:
tatsutakeinjp-bot:
runs-on: ubuntu-22.04
if: github.actor == 'tatsutakeinjp-bot[bot]'
steps:
# https://github.com/marketplace/actions/create-github-app-token
- name: Create GitHub App Token
uses: actions/create-github-app-token@c8f55efbd427e7465d6da1106e7979bc8aaee856 # v1.10.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 }}