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

qa-tests: fix workflows for release 2.60 #10217

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
2 changes: 0 additions & 2 deletions .github/workflows/qa-clean-exit-block-downloading.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@ name: QA - Clean exit (block downloading)
on:
push:
branches:
- main
- 'release/2.*'
pull_request:
branches:
- main
- 'release/2.*'
types:
- ready_for_review
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/qa-clean-exit-snapshot-downloading.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@ name: QA - Clean exit (snapshot downloading)
on:
push:
branches:
- main
- 'release/2.*'
pull_request:
branches:
- main
- 'release/2.*'
types:
- ready_for_review
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/qa-snap-download.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
name: QA - Snapshot Download

on:
schedule:
- cron: '5 0 * * *' # Run every day at 05:00 AM UTC
push:
branches:
- 'release/2.*'
pull_request:
branches:
- 'release/2.*'
types:
- ready_for_review
workflow_dispatch: # Run manually

jobs:
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/qa-tip-tracking.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
name: QA - Tip tracking

on:
schedule:
- cron: '0 0 * * *' # Run every day at 00:00 AM UTC
push:
branches:
- 'release/2.*'
pull_request:
branches:
- 'release/2.*'
types:
- ready_for_review
workflow_dispatch: # Run manually

jobs:
Expand Down
Loading