Files
minecraft-bedrock-json-schemas/.github/workflows/dependabot.yml
Daan Verstraten 2fe9f2ed70 Starting on blocks (#137)
* Starting on blocks

* Updated collision box

* Updated block components

* Fixed block/rotation

* Making orbi responsible for dependencies

* Updating blocks

* trigger -> triggers
2022-10-29 16:36:39 +02:00

23 lines
535 B
YAML

name: Dependabot auto-merge
on: pull_request_target
permissions:
pull-requests: write
contents: write
concurrency:
group: dependabot-check
cancel-in-progress: false
jobs:
dependabot:
name: Dependabot auto merge
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.ORBI_TOKEN}}