Skip to content

Commit

Permalink
feat: change the metrics endpoint to rsaMetrics (#472)
Browse files Browse the repository at this point in the history
* feat: change metrics endpoint to `rsaMetrics`

* ci: update the pr_reviewer

* chore: update the @jnxplus/nx-gradle to the latest version

This is to fix npm installation issue

* chore: add .nx in gitignore

* feat: update build and test executors for all modules

* ci: except rudderreporter and repository exclude all other modules from releasing

This is to ensure we don't release any unwanted changes
  • Loading branch information
1abhishekpandey authored Aug 20, 2024
1 parent 39327e3 commit 8b879d5
Show file tree
Hide file tree
Showing 14 changed files with 924 additions and 171 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/draft_new_release-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,4 @@ jobs:
github_token: ${{ secrets.PAT }}
pr_title: 'chore(release): pulling ${{ steps.create-release.outputs.branch_name }} into master-v2'
pr_body: ':crown: *An automated PR*'
pr_reviewer: 'itsdebs'
pr_reviewer: '@rudderlabs/sdk-android'
4 changes: 2 additions & 2 deletions .github/workflows/publish-new-github-release-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
github_token: ${{ secrets.PAT }}
pr_title: 'chore(release): pulling master-v2 into develop-v2 post release v${{ steps.extract-version-v2.outputs.release_version }}'
pr_body: ':crown: *An automated PR*'
pr_reviewer: 'itsdebs'
pr_reviewer: '@rudderlabs/sdk-android'

- name: Delete hotfix release branch v2
uses: koj-co/delete-merged-action@master
Expand Down Expand Up @@ -125,4 +125,4 @@ jobs:
}
}
]
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ local.properties
node_modules
/.idea/
*/build
/.nx
10 changes: 8 additions & 2 deletions gsonrudderadapter/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
"target": "build"
}
],
"executor": "@jnxplus/nx-gradle:build",
"executor": "@jnxplus/nx-gradle:run-task",
"options": {
"task": "build"
},
"outputs": [
"{projectRoot}/gsonrudderadapter/build"
]
Expand All @@ -31,7 +34,10 @@
"dependsOn": [
"build"
],
"executor": "@jnxplus/nx-gradle:test"
"executor": "@jnxplus/nx-gradle:run-task",
"options": {
"task": "test"
}
},
"ktformat": {
"executor": "@jnxplus/nx-gradle:ktformat"
Expand Down
10 changes: 8 additions & 2 deletions jacksonrudderadapter/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
"target": "build"
}
],
"executor": "@jnxplus/nx-gradle:build",
"executor": "@jnxplus/nx-gradle:run-task",
"options": {
"task": "build"
},
"outputs": [
"{projectRoot}/jacksonrudderadapter/build"
]
Expand All @@ -31,7 +34,10 @@
"dependsOn": [
"build"
],
"executor": "@jnxplus/nx-gradle:test"
"executor": "@jnxplus/nx-gradle:run-task",
"options": {
"task": "test"
}
},
"ktformat": {
"executor": "@jnxplus/nx-gradle:ktformat"
Expand Down
10 changes: 8 additions & 2 deletions models/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
"sourceRoot": "./models/src",
"targets": {
"build": {
"executor": "@jnxplus/nx-gradle:build",
"executor": "@jnxplus/nx-gradle:run-task",
"options": {
"task": "build"
},
"outputs": [
"{projectRoot}/models/build"
]
Expand All @@ -23,7 +26,10 @@
"dependsOn": [
"build"
],
"executor": "@jnxplus/nx-gradle:test"
"executor": "@jnxplus/nx-gradle:run-task",
"options": {
"task": "test"
}
},
"ktformat": {
"executor": "@jnxplus/nx-gradle:ktformat"
Expand Down
10 changes: 8 additions & 2 deletions moshirudderadapter/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@
"target": "build"
}
],
"executor": "@jnxplus/nx-gradle:build",
"executor": "@jnxplus/nx-gradle:run-task",
"options": {
"task": "build"
},
"outputs": [
"{projectRoot}/moshirudderadapter/build"
]
Expand All @@ -25,7 +28,10 @@
}
},
"test": {
"executor": "@jnxplus/nx-gradle:test"
"executor": "@jnxplus/nx-gradle:run-task",
"options": {
"task": "test"
}
},
"ktformat": {
"executor": "@jnxplus/nx-gradle:ktformat"
Expand Down
Loading

0 comments on commit 8b879d5

Please sign in to comment.