From fc4ed118d4b372e9f978c0db77178bedd8ae23e4 Mon Sep 17 00:00:00 2001 From: BobrImperator Date: Thu, 21 Sep 2023 16:30:28 +0200 Subject: [PATCH] inspect directory --- .github/workflows/twios.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/twios.yaml b/.github/workflows/twios.yaml index 210e1a1a6f..e024bdd504 100644 --- a/.github/workflows/twios.yaml +++ b/.github/workflows/twios.yaml @@ -31,10 +31,12 @@ jobs: git config --global user.email "twios@twios_test_dev.com" git config --global user.name "TWIOS Dev" - name: Generate Comment + shell: bash run: | - GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN bash bin/this-week.sh comment > comment.txt + GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN ./bin/this-week.sh comment > comment.txt - name: Generate TWIOS - run: GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN bash bin/this-week.sh + shell: bash + run: GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN ./bin/this-week.sh - name: Push new TWIOS run: | FORMATTED_DATE="$(date +"%Y-%m-%d")" @@ -58,9 +60,11 @@ jobs: git config --global user.email "twios@twios_test_dev.com" git config --global user.name "TWIOS Dev" - name: Read PR comment body + shell: bash run: | GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN bash bin/this-week.sh comment --comment="${{ github.event.pull_request.body }}" - name: Generate TWIOS + shell: bash run: GITHUB_PERSONAL_TOKEN=$GITHUB_TOKEN bash bin/this-week.sh -edit - name: Push updated TWIOS run: |