Skip to content

Commit

Permalink
promote subworkfows
Browse files Browse the repository at this point in the history
  • Loading branch information
anoipm committed May 8, 2024
1 parent 7c6544b commit 83b1924
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 8 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pull-integration-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Integration tests
name: Pull integration tests

on: [ workflow_call ]
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'examples/**'
types: [opened, reopened, synchronize, ready_for_review, converted_to_draft]

jobs:
pull-operator-integration-test:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/pull-unit-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Unit tests
name: Pull unit tests

on: [ workflow_call ]
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'examples/**'
types: [opened, reopened, synchronize, ready_for_review, converted_to_draft]

jobs:
operator-unit-tests:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/push-integration-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Integration tests
name: Push integration tests

on: [ workflow_call ]
on:
push:
branches: [ "main", "release-*" ]

jobs:
push-operator-integration-test:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/push-upgrade-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Upgrade tests
name: Push upgrade tests

on: [ workflow_call ]
on:
push:
branches: [ "main", "release-*" ]

jobs:
push-operator-upgrade-test:
Expand Down

0 comments on commit 83b1924

Please sign in to comment.