Skip to content

Commit bb49a03

Browse files
chore: add concurrency guard (#2072)
Signed-off-by: exploreriii <133720349+exploreriii@users.noreply.github.com> Co-authored-by: AntonioCeppellini <128388022+AntonioCeppellini@users.noreply.github.com>
1 parent c9acb5c commit bb49a03

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/pr-check-test.yml renamed to .github/workflows/pr-check-secondary-unit-integration-test.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
name: Hiero Solo Integration & Unit Tests
2-
1+
name: Secondary PR Check - Hiero Solo Integration & Unit Tests
32
on:
43
push:
54
branches:
@@ -9,21 +8,27 @@ on:
98
- "docs/**"
109
- "examples/**"
1110
- "tck/**"
11+
- "tests/fuzz/**"
1212
- ".github/**"
13-
- "!.github/workflows/pr-check-test.yml"
13+
- "!.github/workflows/pr-check-secondary-unit-integration-test.yml"
1414
pull_request:
1515
paths-ignore:
1616
- "**/*.md"
1717
- "docs/**"
1818
- "examples/**"
1919
- "tck/**"
20+
- "tests/fuzz/**"
2021
- ".github/**"
21-
- "!.github/workflows/pr-check-test.yml"
22+
- "!.github/workflows/pr-check-secondary-unit-integration-test.yml"
2223
workflow_dispatch: {}
2324

2425
permissions:
2526
contents: read
2627

28+
concurrency:
29+
group: pr-check-${{ github.event.pull_request.number || github.ref }}
30+
cancel-in-progress: true
31+
2732
jobs:
2833
unit-tests:
2934
name: Unit Tests (Python ${{ matrix.python-version }})

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
2525
- chore: update GitHub Actions runners from ubuntu-latest to hl-sdk-py-lin-md (#2021)
2626
- Refactored the Advanced Issue Template to V2 with stricter prerequisites and a focus on architectural design (#2016).
2727
- Refactored the Advanced Issue Template to ensure PR-level quality checklists do not block maintainers during issue creation (#2036)
28+
- chore: add concurrency to unit and integration tests (#2071)
2829
- Add automated label sync workflow to propagate labels from linked issues to pull requests (#1716)
2930
- chore: update spam list (#2035)
3031
- Add CodeRabbit release gate workflow and prompt for PR audits `release-pr-prompt.md`, `release-pr-coderabbit-gate.yml` and `release-pr-coderabbit-gate.js`

0 commit comments

Comments
 (0)