From e31180446aef0a95d15dc66917337799d999675b Mon Sep 17 00:00:00 2001 From: Kseniya Shychko Date: Tue, 6 Feb 2024 22:58:55 +0100 Subject: [PATCH] fix: use another action for PR commit with text from file --- .github/workflows/pull-request-24.yml | 31 +++++++++++---------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/.github/workflows/pull-request-24.yml b/.github/workflows/pull-request-24.yml index d9b9428..606f659 100644 --- a/.github/workflows/pull-request-24.yml +++ b/.github/workflows/pull-request-24.yml @@ -39,26 +39,19 @@ jobs: # todo: add check for message.txt content # mv code-list-new-sorted.csv "CRL/Rec24/current/code-list.csv" - - name: Set variables + - uses: actions/upload-artifact@v1 if: ${{ hashFiles('message.txt') != '' }} - run: | - MSG=$(cat message.txt) - echo "MESSAGE=$MSG" >> $GITHUB_ENV - - - name: Comment a pull_request + with: + name: message.txt + path: output + - uses: actions/download-artifact@v1 if: ${{ hashFiles('message.txt') != '' }} - uses: mb2dev/github-action-comment-pull-request@1.0.0 with: - message: | - message: - ${{ env.MESSAGE }} + name: results + - name: comment PR + if: ${{ hashFiles('message.txt') != '' }} + uses: machine-learning-apps/pr-comment@master + env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Commit and push if it changed - run: |- - git config user.name "Automated" - git config user.email "actions@users.noreply.github.com" - git add "CLR/Rec24/current/code-list.csv" - timestamp=$(date -u) - git commit -F message.txt || exit 0 - git push \ No newline at end of file + with: + path: results/message.txt