From 0a9d28a83898bd2ff9118b4c9b5b906d69048850 Mon Sep 17 00:00:00 2001 From: michaelessiet Date: Sun, 3 Mar 2024 12:32:21 +0100 Subject: [PATCH] ... --- .github/workflows/close-tea-pr.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/close-tea-pr.yaml b/.github/workflows/close-tea-pr.yaml index 2740b63..16ce042 100644 --- a/.github/workflows/close-tea-pr.yaml +++ b/.github/workflows/close-tea-pr.yaml @@ -17,18 +17,18 @@ jobs: id: files uses: jitterbit/get-changed-files@v1 - - name: Check for tea.yaml - id: check_for_tea - run: | - echo "Changed files: ${{ steps.files.outputs.all }}" - if echo "${{ steps.files.outputs.all }}" | grep -q "tea.yaml"; then - echo "::set-output name=detected::true" - else - echo "::set-output name=detected::false" - fi + # - name: Check for tea.yaml + # id: check_for_tea + # run: | + # echo "Changed files: ${{ steps.files.outputs.all }}" + # if echo "${{ steps.files.outputs.all }}" | grep -q "tea.yaml"; then + # echo "::set-output name=detected::true" + # else + # echo "::set-output name=detected::false" + # fi - name: Close PR if tea.yaml is changed - if: steps.check_for_tea.outputs.detected == 'true' + # if: steps.check_for_tea.outputs.detected == 'true' uses: peter-evans/close-pull@v3 with: pull-request-number: ${{ github.event.pull_request.number }}