From 52fc12adf3444efcf64e5e5708f5369e8b4d334a Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Wed, 24 Jun 2020 16:09:41 +0200 Subject: [PATCH] gha : Use unique name for auto generated patch branches --- .github/workflows/clang-format.yml | 1 + .github/workflows/spell-check.yml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml index 7c5adb1fe7..ecccd10ddc 100644 --- a/.github/workflows/clang-format.yml +++ b/.github/workflows/clang-format.yml @@ -26,5 +26,6 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} commit-message: 'Fixes by clang-format' title: 'Fixes by clang-format' + branch: clang-format-patches \ No newline at end of file diff --git a/.github/workflows/spell-check.yml b/.github/workflows/spell-check.yml index a4d2ac786a..24f609c5b0 100644 --- a/.github/workflows/spell-check.yml +++ b/.github/workflows/spell-check.yml @@ -13,9 +13,10 @@ jobs: - uses: sobolevn/misspell-fixer-action@master with: options: '-rsvnuR ApplicationCode/' - - uses: peter-evans/create-pull-request@v2.4.4 + - uses: peter-evans/create-pull-request@v2 with: token: ${{ secrets.GITHUB_TOKEN }} commit-message: 'Fixes by misspell-fixer' title: 'Typos fix by misspell-fixer' + branch: spell-check-patches