chore(deps): bump pyarrow-stubs from 10.0.1.9 to 17.11 #22
This file contains 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 | |
on: pull_request | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'tekumara/fakesnow' | |
steps: | |
- name: Dependabot metadata | |
id: dependabot-metadata | |
uses: dependabot/fetch-metadata@v2 | |
- name: Enable auto-merge for Dependabot PRs | |
# outputs will only be populated if the target Pull Request was opened by Dependabot | |
# and contains only Dependabot-created commits, this avoids re-enabling auto-merge | |
# when its been manually disabled and there are non-dependabot commits on the PR | |
if: ${{steps.dependabot-metadata.outputs}} | |
# don't include verbose dependabot PR description as body when merging | |
run: gh pr merge --auto --squash "$PR_URL" --body "" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GH_TOKEN: ${{secrets.GITHUB_TOKEN}} |