Skip to content

Commit 4fb85fb

Browse files
Merge branch 'main' into wasteful-macaw
2 parents 84e0d5f + 0cf3cc3 commit 4fb85fb

4 files changed

Lines changed: 37 additions & 8 deletions

File tree

.github/dependabot.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,17 @@ updates:
1010
directories:
1111
- "/"
1212
- "/infra/bigquery-export"
13-
- "infra/dataform-export"
14-
- "infra/dataform-trigger"
13+
- "/infra/dataform-service"
1514
schedule:
1615
interval: "weekly"
1716

1817
- package-ecosystem: "terraform"
19-
directory: "infra/tf/"
18+
directories:
19+
- "/infra/tf/"
20+
schedule:
21+
interval: "weekly"
22+
23+
- package-ecosystem: "github-actions"
24+
directory: "/"
2025
schedule:
2126
interval: "weekly"

.github/workflows/dependabot.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Dependabot auto-merge
2+
on: pull_request
3+
4+
permissions:
5+
contents: write
6+
pull-requests: write
7+
8+
jobs:
9+
dependabot:
10+
runs-on: ubuntu-latest
11+
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'HTTPArchive/dataform'
12+
steps:
13+
- name: Dependabot metadata
14+
id: metadata
15+
uses: dependabot/fetch-metadata@v2
16+
with:
17+
github-token: "${{ secrets.GITHUB_TOKEN }}"
18+
19+
- name: Enable auto-merge for Dependabot PRs
20+
if: steps.metadata.outputs.update-type == 'version-update:semver-patch'
21+
run: gh pr merge --auto --squash "$PR_URL"
22+
env:
23+
PR_URL: ${{github.event.pull_request.html_url}}
24+
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "crawl-data",
33
"author": "@max-ostapenko",
44
"dependencies": {
5-
"@dataform/core": "3.0.24"
5+
"@dataform/core": "3.0.25"
66
},
77
"scripts": {
88
"format": "npx standard --fix; npx markdownlint --ignore-path .gitignore --config package.json --configPointer /markdownlint . --fix; terraform -chdir=infra/tf fmt -recursive",

0 commit comments

Comments
 (0)