Skip to content

Commit

Permalink
DevKit updates
Browse files Browse the repository at this point in the history
  • Loading branch information
SonataCI authored and jordisala1991 committed Apr 27, 2023
1 parent cabbb4f commit 7ac485e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/auto-merge-dev-kit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# DO NOT EDIT THIS FILE!
#
# It's auto-generated by sonata-project/dev-kit package.

name: Auto merge DevKit PRs

on:
pull_request_target:
branches:
- 3.x
- 4.x
types: [labeled]

jobs:
auto-merge:
runs-on: ubuntu-latest

if: github.event.pull_request.user.login == 'SonataCI' && github.event.label.name == 'automerge'

env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

steps:
- name: Auto merge PR when conditions are met
run: gh pr merge --repo "${{ github.repository }}" --rebase --auto "${{ github.event.pull_request.number }}"

- name: Auto approve PR
run: gh pr review --repo "${{ github.repository }}" --approve "${{ github.event.pull_request.number }}"

0 comments on commit 7ac485e

Please sign in to comment.