From 02ed47c5782bffb82bf65f37532fb7dea8cc45a4 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 13 Jan 2024 07:36:09 +0100 Subject: [PATCH] Update job. Do it manually. --- .github/workflows/debug-info-actions.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/debug-info-actions.yml b/.github/workflows/debug-info-actions.yml index 3ff1991198..e66f3eb98c 100644 --- a/.github/workflows/debug-info-actions.yml +++ b/.github/workflows/debug-info-actions.yml @@ -14,14 +14,18 @@ permissions: checks: read jobs: - demo: + respond: runs-on: ubuntu-latest steps: - uses: github/command@v1.1.0 id: command with: command: ".eOxNZAmyGz6CXMyf" - - run: gh issue edit "$NUMBER" --add-label "$LABELS" + - run: | + ISSUE_BODY=$(gh issue view 8380 --json body) + if [[ $string == *".eOxNZAmyGz6CXMyf"* ]]; then + gh issue edit "$NUMBER" --add-label "$LABELS" + fi env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_REPO: ${{ github.repository }}