Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add job name and fix mergify ci-passed rule #499

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ pull_request_rules:

- name: Test passed for code changed-main
conditions:
- check-success=test-backup-restore-cross-version
- check-success=test-backup-restore-after-upgrade
- check-success=test-backup-restore-cli
- check-success=test-backup-restore-api
- check-success=Backup and restore cross version
- check-success=Backup and restore after upgrade
- check-success=Backup and restore with rbac config
- check-success=Backup and restore cli
- check-success=Backup and restore api
actions:
label:
add:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ concurrency:

jobs:
test-backup-restore-cross-version:
name: Backup and restore cross version
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -156,6 +157,7 @@ jobs:
python example/verify_data.py

test-backup-restore-after-upgrade:
name: Backup and restore after upgrade
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -249,6 +251,7 @@ jobs:


test-backup-restore-cli:
name: Backup and restore cli
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -383,6 +386,7 @@ jobs:
python example/verify_data.py

test-backup-restore-with-rbac-config:
name: Backup and restore with rbac config
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -526,6 +530,7 @@ jobs:


test-backup-restore-api:
name: Backup and restore api
runs-on: ubuntu-latest
needs: test-backup-restore-cli
strategy:
Expand Down
Loading