From ec0e6415786ade6e80abb9cd1d19448e28f1286a Mon Sep 17 00:00:00 2001 From: Vadim Kharitonov Date: Mon, 30 Jan 2023 13:48:34 +0100 Subject: [PATCH] Create Release PR: review fixes --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 74a2af8e96..49e04ee001 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: - name: Get current date id: date - run: echo "::set-output name=date::$(date +'%Y-%m-%d')" + run: echo "date=(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT - name: Create release branch run: git checkout -b release/${{ steps.date.outputs.date }} @@ -25,7 +25,7 @@ jobs: run: git push origin release/${{ steps.date.outputs.date }} - name: Create pull request into release - uses: thomaseizinger/create-pull-request@1 + uses: thomaseizinger/create-pull-request@e3972219c86a56550fb70708d96800d8e24ba862 # 1.3.0 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} head: release/${{ steps.date.outputs.date }}