Skip to content

chore: avoid re-fetching sm context unnecessarily in SMF #2471

chore: avoid re-fetching sm context unnecessarily in SMF

chore: avoid re-fetching sm context unnecessarily in SMF #2471

Workflow file for this run

name: "Dependabot Auto Approve and Merge"
permissions:
pull-requests: write
contents: write
on:
pull_request:
jobs:
auto-merge:
runs-on: ubuntu-24.04
if: github.actor == 'dependabot[bot]'
steps:
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
# This step will allow Github to auto-merge the PR if branch protection rules are satisfied.
# Branch protection rules should require status checks to pass before merging including all required workflows.
- name: Enable auto-merge
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}