Skip to content

Commit

Permalink
Disable automatic, scheduled Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrieb committed Dec 13, 2023
1 parent f7c1203 commit a2f00ca
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/generate-bloomfilter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:


Expand Down

0 comments on commit a2f00ca

Please sign in to comment.