From 4bb65617a47dc30282ffe340cc45d202b973650b Mon Sep 17 00:00:00 2001 From: Matt Knight Date: Mon, 20 Feb 2023 10:47:30 -0800 Subject: [PATCH] automerge and PR description (#108) --- .github/workflows/auto-pr.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/auto-pr.yml b/.github/workflows/auto-pr.yml index 7813a40..34b2069 100644 --- a/.github/workflows/auto-pr.yml +++ b/.github/workflows/auto-pr.yml @@ -22,11 +22,14 @@ jobs: fetch-depth: 0 - name: Update + id: update run: | cd deps/microzig git pull origin main + echo "DESCRIPTION=$(git log -1 --pretty=%B | head -n 1)" >> $GITHUB_OUTPUT - name: Create Pull Request + id: cpr uses: peter-evans/create-pull-request@v4.2.3 with: token: ${{ secrets.PR_TOKEN }} @@ -34,4 +37,12 @@ jobs: commit-message: update microzig delete-branch: true title: Update microzig + body: ${{ steps.update.outputs.DESCRIPTION }} + - name: Enable Pull Request Automerge + if: steps.cpr.outputs.pull-request-operation == 'created' + uses: peter-evans/enable-pull-request-automerge@v2 + with: + token: ${{ secrets.PR_TOKEN }} + pull-request-number: ${{ steps.cpr.outputs.pull-request-number }} + merge-method: squash