From 6020d255f1bf69f520c19ccc18372b174d1b4cae Mon Sep 17 00:00:00 2001 From: Constrat <56174894+Constrat@users.noreply.github.com.> Date: Tue, 21 Oct 2025 15:31:56 +0200 Subject: [PATCH] test: remove cancelled() and add mentions --- .github/workflows/res-update-game.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/res-update-game.yml b/.github/workflows/res-update-game.yml index cdc0bc910b..d1b5b8a851 100644 --- a/.github/workflows/res-update-game.yml +++ b/.github/workflows/res-update-game.yml @@ -356,7 +356,7 @@ jobs: # gh workflow run release-nightly-ota.yml -f release_body="Auto Release of Resource Updates" - name: Comment on issue if failed - if: (failure() || cancelled()) && github.ref == 'refs/heads/dev' + if: failure() && github.ref == 'refs/heads/dev' run: | # Minimize old failure comments comments=$(gh api repos/${{ github.repository }}/issues/14493/comments --jq '.[] | select(.user.login == "github-actions[bot]") | select(.body | contains("${{ github.server_url }}/${{ github.repository }}/actions/runs/")) | .node_id') @@ -374,6 +374,6 @@ jobs: # Add new failure comment gh issue comment 14493 -R ${{ github.repository }} --body "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} - MistEO ABA2396 Constrat" + @MistEO @ABA2396 @Constrat" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}