Skip to content

Commit e555caa

Browse files
committed
Update Dependabot config and deploy workflow paths
Added a new npm update group for /turing-js-sdk in Dependabot config and adjusted ignore and group settings. Updated deploy workflow to use turing-js-sdk/js-sdk-lib directory for npm operations instead of turing-js-sdk.
1 parent 69c3358 commit e555caa

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,19 @@ updates:
3737
interval: "weekly"
3838
target-branch: "2025.3"
3939
open-pull-requests-limit: 15
40+
ignore:
41+
- dependency-name: "typescript"
42+
groups:
43+
react:
44+
applies-to: version-updates
45+
patterns:
46+
- "*"
47+
- package-ecosystem: "npm" # See documentation for possible values
48+
directory: "/turing-js-sdk" # Location of package manifests
49+
schedule:
50+
interval: "weekly"
51+
target-branch: "2025.3"
52+
open-pull-requests-limit: 15
4053
ignore:
4154
- dependency-name: "typescript"
4255
groups:

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Increment Version
3939
run: |
4040
mvn build-helper:parse-version versions:set -DnewVersion=\${parsedVersion.majorVersion}.\${parsedVersion.minorVersion}.\${parsedVersion.nextIncrementalVersion} versions:commit
41-
cd turing-js-sdk
41+
cd turing-js-sdk/js-sdk-lib
4242
npm version patch
4343
npm run build
4444
git config user.name alexandre.oliveira
@@ -92,7 +92,7 @@ jobs:
9292
run: |
9393
export JITPACK=true
9494
mvn --batch-mode -P jitpack deploy
95-
cd turing-js-sdk
95+
cd turing-js-sdk/js-sdk-lib
9696
npm publish
9797
env:
9898
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)