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

Scheduled runs #461

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
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
8 changes: 8 additions & 0 deletions .github/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Scheduled Build Run Results

Results for **the latest** release_workflow scheduled runs.

| Branch | Status |
| ------------ | - |
| 24.3-scheduled-run | [![24.3.5.47.altinitystable](https://github.com/Altinity/ClickHouse/actions/workflows/release_branches.yml/badge.svg?branch=24.3-scheduled-run?event=workflow_call)](https://github.com/Altinity/ClickHouse/actions/workflows/release_branches.yml?query=branch%3A24.3-scheduled-run) |
| 24.3-fips-scheduled-run |[![24.3.5.48.altinityfips](https://github.com/Altinity/ClickHouse/actions/workflows/release_branches.yml/badge.svg?branch=24.3-fips-scheduled-run?event=workflow_call)](https://github.com/Altinity/ClickHouse/actions/workflows/release_branches.yml?query=branch%3A24.3-fips-scheduled-run) |
35 changes: 35 additions & 0 deletions .github/workflows/scheduled_runs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Scheduled Altinity Stable Builds

on:
schedule:
- cron: "0 0 * * 6"
# Make sure that any changes to this file is actually tested with PRs
pull_request:
types:
- synchronize
- reopened
- opened
paths:
- '**/scheduled_runs.yml'

jobs:
LaunchWorkflows:
strategy:
fail-fast: false
matrix:
branch:
- 24.3.5-snapshot_runners
#- 24.3.fips-schduled-runs
- 23.8.16_scheduled_run_fix
name: ${{ matrix.branch }}
runs-on: ubuntu-latest
steps:
- name: Run 24.3 workflow
run: |
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{ secrets.TOKEN }}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/Altinity/ClickHouse/actions/workflows/release_branches.yml/dispatches \
-d '{"ref":"${{ matrix.branch }}"}'