Skip to content
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
5 changes: 2 additions & 3 deletions .github/workflows/daily-state-run.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: daily-state-run

on:
# Daily scheduled candidate-driven ingest for news_items, with manual dispatch for ad hoc reruns.
schedule:
- cron: "0 4 * * *"
# Disabled — automated data/ops jobs are run locally or triggered manually.
# To re-enable restore the original schedule/event triggers from git history.
workflow_dispatch:

concurrency:
Expand Down
15 changes: 2 additions & 13 deletions .github/workflows/news-items-backfill-discover.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,9 @@
name: news-items-backfill-discover

on:
# Disabled — automated data/ops jobs are run locally or triggered manually.
# To re-enable restore the original schedule/event triggers from git history.
workflow_dispatch:
inputs:
date_from:
description: "Required ISO timestamp for the batch start window"
required: true
type: string
date_to:
description: "Required ISO timestamp for the batch end window"
required: true
type: string
batch_id:
description: "Optional durable batch id override"
required: false
type: string

Comment on lines 3 to 7
concurrency:
group: state-run
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/news-items-backfill-scrape.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
name: news-items-backfill-scrape

on:
# Disabled — automated data/ops jobs are run locally or triggered manually.
# To re-enable restore the original schedule/event triggers from git history.
workflow_dispatch:
Comment on lines 3 to 6
inputs:
batch_id:
description: "Optional durable batch id to constrain the scrape drain"
required: false
type: string

concurrency:
group: state-run
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/news-items-backup.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: news-items-backup

on:
# Weekly latest-backup upload for the already-built news_items release bundle.
schedule:
- cron: "45 4 * * 0"
# Disabled — automated data/ops jobs are run locally or triggered manually.
# To re-enable restore the original schedule/event triggers from git history.
workflow_dispatch:

concurrency:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/news-items-daily-review.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
name: news-items-daily-review

on:
# Review the latest daily ingest artifacts after the daily ingest workflow completes.
workflow_run:
workflows: ["daily-state-run"]
types: [completed]
# Disabled — automated data/ops jobs are run locally or triggered manually.
# To re-enable restore the original schedule/event triggers from git history.
workflow_dispatch:

concurrency:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/news-items-discover.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: news-items-discover

on:
schedule:
- cron: "0 3 * * *"
# Disabled — automated data/ops jobs are run locally or triggered manually.
# To re-enable restore the original schedule/event triggers from git history.
workflow_dispatch:

concurrency:
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/news-items-monthly-report.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
name: news-items-monthly-report

on:
schedule:
- cron: "15 5 1 * *"
# Disabled — automated data/ops jobs are run locally or triggered manually.
# To re-enable restore the original schedule/event triggers from git history.
workflow_dispatch:
inputs:
month:
description: "Optional report month in YYYY-MM; defaults to previous UTC month"
required: false
type: string

Comment on lines 3 to 7
concurrency:
group: state-run
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/news-items-release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: news-items-release

on:
# Weekly publication run for news_items release bundles.
schedule:
- cron: "15 4 * * 0"
# Disabled — automated data/ops jobs are run locally or triggered manually.
# To re-enable restore the original schedule/event triggers from git history.
workflow_dispatch:

concurrency:
Expand Down
35 changes: 2 additions & 33 deletions .github/workflows/pr-agent-context-refresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,40 +24,9 @@ run-name: >-
}}

on:
pull_request_review:
types: [submitted, edited, dismissed]
pull_request_review_comment:
types: [created, edited, deleted]
check_run:
types: [completed]
# Some external providers still surface late results as commit statuses rather than check runs.
status:
# Disabled — automated data/ops jobs are run locally or triggered manually.
# To re-enable restore the original schedule/event triggers from git history.
workflow_dispatch:
inputs:
pull_request_number:
description: Pull request number to refresh explicitly.
required: true
type: string
pull_request_base_sha:
description: Base SHA for the explicit refresh target.
required: true
type: string
pull_request_head_sha:
description: Head SHA for the explicit refresh target.
required: true
type: string
trigger_event_name:
description: Synthetic trigger event name used in rendered metadata.
required: false
default: workflow_dispatch
type: string
trigger_event_action:
description: Synthetic trigger event action used in rendered metadata.
required: false
default: ""
type: string
schedule:
- cron: "*/15 * * * *"

Comment on lines 26 to 30
concurrency:
group: >-
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/weekly-state-run.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
name: weekly-state-run

on:
# Weekly catch-up candidate-driven ingest for news_items, with manual dispatch for ad hoc reruns.
schedule:
# Runs at 04:30 UTC every Sunday, which is 06:30 in Israel Standard Time
# (UTC+2) and 07:30 during Israel daylight saving time (UTC+3).
- cron: "30 4 * * 0"
# Disabled — automated data/ops jobs are run locally or triggered manually.
# To re-enable restore the original schedule/event triggers from git history.
workflow_dispatch:

concurrency:
Expand Down
Loading