chore(deps): Bump react-tooltip from 5.30.0 to 6.0.8 #7
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Dependabot auto-merge | |
| # patch / minor の Dependabot PR を、必須チェック通過後に自動マージする。major は手動レビュー。 | |
| # | |
| # 事前に必要(リポジトリ Settings): "Allow auto-merge" を有効化し、デフォルトブランチのブランチ保護で | |
| # CI ワークフロー(集約ジョブ "CI")を必須ステータスチェックにすること。さもないと --auto が待つチェックが | |
| # なく、CI を待たずにマージされてしまう。 | |
| on: pull_request | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| auto-merge: | |
| runs-on: ubuntu-latest | |
| if: github.actor == 'dependabot[bot]' | |
| steps: | |
| - name: Fetch Dependabot metadata | |
| id: metadata | |
| uses: dependabot/fetch-metadata@v3 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Enable auto-merge for patch/minor updates | |
| if: steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor' | |
| run: gh pr merge --auto --squash "$PR_URL" | |
| env: | |
| PR_URL: ${{ github.event.pull_request.html_url }} | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |