From a2f00ca8cc9540ff1cbc3f359916aee6ae2b968e Mon Sep 17 00:00:00 2001 From: Jacob Strieb Date: Tue, 12 Dec 2023 21:51:04 -0500 Subject: [PATCH] Disable automatic, scheduled Actions workflow --- .github/workflows/generate-bloomfilter.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/generate-bloomfilter.yml b/.github/workflows/generate-bloomfilter.yml index 4fd0143..080927b 100644 --- a/.github/workflows/generate-bloomfilter.yml +++ b/.github/workflows/generate-bloomfilter.yml @@ -10,9 +10,18 @@ name: Generate Bloom Filters # Run once every 24 hours because the BigQuery database is updated once every # 24 hours. Also run when manually triggered. on: - schedule: + # Automatic running disabled for now since BigQuery is not working in GitHub + # Actions, and since the BigQuery Hacker News dataset is not up-to-date + # anyway: + # + # - https://issuetracker.google.com/issues/315864442 + # - https://issuetracker.google.com/issues/261579123 + # + # I'll get around to fixing this someday. + # + # schedule: # This time is based loosely around when the BigQuery data updates - - cron: "5 16 * * *" + # - cron: "5 16 * * *" workflow_dispatch: