Skip to content

Commit

Permalink
fix consolidated CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
sonalmahajan15 committed Apr 26, 2024
1 parent 762f47c commit 295f37a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/golden-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
cache: false

- name: Golden Test ${{ matrix.grouping }}
id: ${{ matrix.test_id }}
id: golden_test
# Run golden test by comparing HEAD and the base branch (the target branch of the PR).
# GitHub Actions terminates the job if it hits the resource limits. Here we limit the
# memory usage to 8GiB to avoid that.
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
repo: repo,
issue_number: issueNumber
});
const botComment = comments.data.find(comment => comment.user.login === 'github-actions[bot]' && comment.body.startsWith('## Golden Test') && comment.body.endsWith(${{ matrix.grouping }}));
const botComment = comments.data.find(comment => comment.user.login === 'github-actions[bot]' && comment.body.startsWith('## Golden Test ${{ matrix.grouping }}'));
// Update or create the PR comment.
if (botComment) {
Expand Down

0 comments on commit 295f37a

Please sign in to comment.