From 82077bc0e6709fe36c92d075f3f4d9a08722a428 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 09:45:11 +0000 Subject: [PATCH] :arrow_up: Updates peter-evans/create-or-update-comment action to v3 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/closing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/closing.yml b/.github/workflows/closing.yml index adf1332..f5faf5d 100644 --- a/.github/workflows/closing.yml +++ b/.github/workflows/closing.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-18.04 steps: - name: Add closed question comment - uses: peter-evans/create-or-update-comment@v1 + uses: peter-evans/create-or-update-comment@v3 if: (contains(github.event.issue.labels.*.name, 'question') && ! contains(github.event.issue.labels.*.name, 'wontfix')) || join(github.event.issue.labels.*.name) == '' with: token: ${{ secrets.GITHUB_TOKEN }} @@ -20,7 +20,7 @@ jobs: * In case you see a similar problem, please open a separate issue. * If you are happy with the outcome, don’t hesitate to support Weblate by making a [donation](https://ko-fi.com/alexrogalskiy). - name: Add closed issue comment - uses: peter-evans/create-or-update-comment@v1 + uses: peter-evans/create-or-update-comment@v3 if: "! contains(github.event.issue.labels.*.name, 'invalid') && ! contains(github.event.issue.labels.*.name, 'question') && ! contains(github.event.issue.labels.*.name, 'wontfix') && ! contains(github.event.issue.labels.*.name, 'duplicate') && ! contains(github.event.issue.labels.*.name, 'undecided') && ! contains(github.event.issue.labels.*.name, 'needinfo') && join(github.event.issue.labels.*.name) != ''" with: token: ${{ secrets.GITHUB_TOKEN }}