From 50fd417b9de2ae2d5cc7385641d36a5cb276bf76 Mon Sep 17 00:00:00 2001 From: koplo199 <85577251+koplo199@users.noreply.github.com> Date: Wed, 4 Jan 2023 21:26:09 +0100 Subject: [PATCH] action-download-artifact: Use v2 release insted of master branch --- .github/workflows/pull-components.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-components.yml b/.github/workflows/pull-components.yml index c22d5d9e..f1b6c542 100644 --- a/.github/workflows/pull-components.yml +++ b/.github/workflows/pull-components.yml @@ -139,7 +139,7 @@ jobs: - name: Check for new artifact id: download-artifact if: matrix.components.workflow != '' && env.UPDATED != 'true' - uses: dawidd6/action-download-artifact@master + uses: dawidd6/action-download-artifact@v2 with: github_token: ${{secrets.GITHUB_TOKEN}} workflow: ${{ matrix.components.workflow }} @@ -263,7 +263,8 @@ jobs: token: ${{secrets.GITHUB_TOKEN}} - name: Enable Pull Request Automerge - if: false && steps.cpr.outputs.pull-request-operation == 'created' + if: false + # if: steps.cpr.outputs.pull-request-operation == 'created' uses: peter-evans/enable-pull-request-automerge@v2 with: pull-request-number: ${{ steps.cpr.outputs.pull-request-number }} @@ -271,6 +272,7 @@ jobs: token: ${{secrets.GITHUB_TOKEN}} - uses: hmarr/auto-approve-action@v3 - if: false && steps.cpr.outputs.pull-request-operation == 'created' + if: false + # if: steps.cpr.outputs.pull-request-operation == 'created' with: pull-request-number: ${{ steps.cpr.outputs.pull-request-number }} \ No newline at end of file