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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,20 @@ updates:
- "/infra/dataform-service"
schedule:
interval: "weekly"
cooldown:
default-days: 7

- package-ecosystem: "terraform"
directories:
- "/infra/tf/"
schedule:
interval: "weekly"
cooldown:
default-days: 7

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
cooldown:
default-days: 7
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
persist-credentials: false

- name: Lint Code Base
uses: super-linter/super-linter/slim@v8.2.1
uses: super-linter/super-linter/slim@v8.3.0
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions workspace/restore_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
},
"outputs": [],
"source": [
"QUERY = \"\"\"\n",
"query = \"\"\"\n",
"## [Restore deleted dataset](https://docs.cloud.google.com/bigquery/docs/restore-deleted-datasets#restore_a_dataset)\n",
"UNDROP SCHEMA httparchive.crawl;\n",
"\"\"\"\n",
"client.query(QUERY).result()"
"client.query(query).result()"
]
},
{
Expand Down Expand Up @@ -55,14 +55,14 @@
},
"outputs": [],
"source": [
"QUERY = \"\"\"\n",
"query = \"\"\"\n",
"## [Restore a table to a specific point in time](https://cloud.google.com/bigquery/docs/restore-tables#restoring_a_table_to_a_specific_point_in_time)\n",
"CREATE TABLE httparchive.crawl_staging.pages_restored_20250804 AS\n",
"SELECT *\n",
"FROM httparchive.crawl.pages\n",
" FOR SYSTEM_TIME AS OF TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 1 HOUR);\n",
"\"\"\"\n",
"client.query(QUERY).result()"
"client.query(query).result()"
]
}
],
Expand Down