Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 1 addition & 3 deletions .github/workflows/ci-5.x-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,9 @@ on:
pull_request:
branches:
- '5.[0-9]+'
schedule:
- cron: '0 6 * * *'
jobs:
CI-CD:
uses: ./.github/workflows/ci-matrix-5.x.yml
secrets: inherit
with:
branch: ${{ github.event_name == 'schedule' && vars.VERTX_5_STABLE_BRANCH || github.event.pull_request.head.sha || github.ref_name }}
branch: ${{ github.event.pull_request.head.sha || github.ref_name }}
Comment thread
vietj marked this conversation as resolved.
Outdated
2 changes: 0 additions & 2 deletions .github/workflows/ci-5.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ on:
pull_request:
branches:
- master
schedule:
- cron: '0 5 * * *'
jobs:
CI-CD:
uses: ./.github/workflows/ci-matrix-5.x.yml
Expand Down
File renamed without changes.
10 changes: 10 additions & 0 deletions .github/workflows/schedule-5.x-stable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: vertx-sql-client (5.x-stable)
on:
schedule:
- cron: '0 6 * * *'
jobs:
CI-CD:
uses: ./.github/workflows/ci-matrix-5.x.yml
secrets: inherit
with:
branch: ${{ github.event_name == 'schedule' && vars.VERTX_5_STABLE_BRANCH || github.ref_name }}
10 changes: 10 additions & 0 deletions .github/workflows/schedule-5.x.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: vertx-sql-client (5.x)
on:
schedule:
- cron: '0 5 * * *'
jobs:
CI-CD:
uses: ./.github/workflows/ci-matrix-5.x.yml
secrets: inherit
with:
branch: ${{ github.ref_name }}