Skip to content

Commit fa1df27

Browse files
committed
fix: allow OWNER to trigger automerge
1 parent 715703f commit fa1df27

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/automerge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
# Prüft, ob der Ersteller des PRs Mitglied der Organisation ist
1414
# 'MEMBER' umfasst alle Mitglieder der Org, in der das Repo liegt
15-
if: github.event.pull_request.author_association == 'MEMBER' && github.repository != 'lemueIO/.github'
15+
if: (github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'OWNER') && github.repository != 'lemueIO/.github'
1616
steps:
1717
- name: Enable Automerge
1818
uses: peter-evans/enable-pull-request-automerge@v3

0 commit comments

Comments
 (0)