From d69fc4ed9f9fa5b570c02c41cf23c8d3cf3de4a0 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Sat, 30 Dec 2023 01:23:42 +0000 Subject: [PATCH] feat: Updated .github/workflows/cla.yml --- .github/workflows/cla.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 540c8a4..ed19679 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -39,9 +39,17 @@ jobs: CLAAssistant: runs-on: ubuntu-latest steps: + - name: "Debug Start Message" + run: echo 'Job starting...' - name: "CLA Assistant" if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' - uses: contributor-assistant/github-action@v2.3.1 + run: | + echo 'Trying CLA Assistant step...' + if ! contributor-assistant/github-action@v2.3.1; then + echo '::error::Error in CLA Assistant step' + fi + - name: "Debug End Message" + run: echo 'Job finished.' env: GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} PERSONAL_ACCESS_TOKEN: ${{ secrets.REDBOT_GITHUB_TOKEN }}