From a8a4c84c07e93b93a34098eec8fbad8fef4f75c6 Mon Sep 17 00:00:00 2001 From: Anmol Nagpal Date: Thu, 21 Dec 2023 20:50:06 +0530 Subject: [PATCH] Feat: Add automerge github shared workflow --- .github/workflows/automerge.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/automerge.yml diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml new file mode 100644 index 0000000..418e9e2 --- /dev/null +++ b/.github/workflows/automerge.yml @@ -0,0 +1,12 @@ +--- +name: Auto merge +on: + pull_request: +jobs: + auto-merge: + uses: clouddrove/github-shared-workflows/.github/workflows/auto_merge.yml@1.0.9 + secrets: + GITHUB: ${{ secrets.GITHUB }} + with: + tfcheck: 'tf-checks-complete-example / Check code format' +...