Skip to content

Commit

Permalink
enh(ci): refine trigger has_changes policy (#2140)
Browse files Browse the repository at this point in the history
  • Loading branch information
mushroomempires authored Feb 21, 2025
1 parent 030bd24 commit 08a567e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/gorgone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,11 @@ jobs:

- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: filter
if: ${{ github.event_name == 'pull_request' }}
if: |
github.event_name == 'pull_request' &&
needs.get-environment.outputs.stability != 'testing'
with:
base: ${{ github.head_ref || github.ref_name }}
filters: |
trigger_unit_tests:
- '/gorgone/**'
Expand Down

2 comments on commit 08a567e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Robot Results

✅ Passed ❌ Failed ⏭️ Skipped Total Pass % ⏱️ Duration
9 1 0 10 90.00 9m48.865913s

Failed Tests

Name Message ⏱️ Duration Suite
EBMSSMPART '0 >= 100' should be true. 150.617 s Services-And-Bulk-Stmt

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Robot Results

✅ Passed ❌ Failed ⏭️ Skipped Total Pass % ⏱️ Duration
9 1 0 10 90.00 9m48.865913s

Failed Tests

Name Message ⏱️ Duration Suite
EBMSSMPART '0 >= 100' should be true. 150.617 s Services-And-Bulk-Stmt

Please sign in to comment.