소스 검색

automerge

David Catuhe 5 년 전
부모
커밋
f6a58fd1f4
1개의 변경된 파일24개의 추가작업 그리고 0개의 파일을 삭제
  1. 24 0
      .github/workflows/automerge.yml

+ 24 - 0
.github/workflows/automerge.yml

@@ -0,0 +1,24 @@
+name: automerge
+on:
+  pull_request:
+    types:
+      - labeled
+      - unlabeled
+      - synchronize
+      - opened
+      - edited
+      - ready_for_review
+      - reopened
+      - unlocked
+  pull_request_review:
+    types:
+      - submitted
+  status: {}
+jobs:
+  automerge:
+    runs-on: ubuntu-latest
+    steps:
+      - name: automerge
+        uses: "pascalgn/automerge-action@7854d3bd607dccdaf0b2c134b699a812c8960213"
+        env:
+          GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"