Skip to content

Commit ded2f10

Browse files
author
Shawn O'Connor
committed
Merge remote-tracking branch 'UPSTREAM/main' into chore/syncUptream-2026-03-11
2 parents 8cd21fe + 4a0ac1c commit ded2f10

File tree

5 files changed

+77
-38
lines changed

5 files changed

+77
-38
lines changed

.github/workflows/dependabot.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
ignore:
8+
- dependency-name: "*"
9+
allow:
10+
- dependency-name: "@gen3/frontend"

.github/workflows/integration_tests.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on: pull_request
44

55
jobs:
66
integration_tests:
7+
if: ${{ !github.event.repository.fork }}
78
name: Integration tests
89
uses: uc-cdis/.github/.github/workflows/integration_tests.yaml@master
910
with:
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Update package dependencies
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize]
6+
paths:
7+
- 'package.json'
8+
- 'package-lock.json'
9+
10+
jobs:
11+
update-package-dependencies:
12+
runs-on: ubuntu-latest
13+
if: github.event.pull_request.title contains 'bump @gen3/frontend'
14+
steps:
15+
- uses: actions/checkout@v6
16+
- name: Set up Node
17+
uses: actions/setup-node@v6
18+
with:
19+
node-version: '24.14.0'
20+
- name: Install Dependencies
21+
run: npm install
22+
- name: Update @gen3/core and @gen3/toolsff
23+
run: |
24+
npm install @gen3/core@latest @gen3/toolsff@latest
25+
git config user.name "github-actions[bot]"
26+
git config user.email "github-actions[bot]@users.noreply.github.com"
27+
git commit -am "Update @gen3/core and @gen3/toolsff"
28+
git push

package-lock.json

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

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gen3/vpodc-data-commons",
3-
"version": "0.12.26",
3+
"version": "0.12.27",
44
"private": "true",
55
"engines": {
66
"npm": ">=11.9.0",
@@ -31,8 +31,8 @@
3131
"@fontsource/montserrat": "^5.2.8",
3232
"@fontsource/poppins": "^5.2.7",
3333
"@fontsource/source-sans-pro": "^5.2.5",
34-
"@gen3/core": "0.12.26",
35-
"@gen3/frontend": "0.12.26",
34+
"@gen3/core": "0.12.27",
35+
"@gen3/frontend": "0.12.27",
3636
"@grafana/faro-react": "^1.9.1",
3737
"@grafana/faro-web-sdk": "^1.9.1",
3838
"@grafana/faro-web-tracing": "^1.9.1",
@@ -64,7 +64,7 @@
6464
"devDependencies": {
6565
"@axe-core/react": "^4.10.2",
6666
"@chromatic-com/storybook": "^4.1.1",
67-
"@gen3/toolsff": "0.12.26",
67+
"@gen3/toolsff": "0.12.27",
6868
"@jest/globals": "^29.7.0",
6969
"@next/eslint-plugin-next": "^15.5.9",
7070
"@storybook/addon-a11y": "^9.1.10",

0 commit comments

Comments
 (0)