Skip to content

chore: release 2024.11.0 #301

chore: release 2024.11.0

chore: release 2024.11.0 #301

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.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@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
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 }}