You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use this to replace the path of some databricks notebook paths in a json files. The json files will have fields like this: "notebookPath": "/Repos/<username>/<Repo>/notebooks/<path to notebook ...>",
I just need to change this to:
"notebookPath": "/notebooks/<path to notebook ...>",
I am trying to use this to replace the path of some databricks notebook paths in a json files. The json files will have fields like this:
"notebookPath": "/Repos/<username>/<Repo>/notebooks/<path to notebook ...>",
I just need to change this to:
"notebookPath": "/notebooks/<path to notebook ...>",
I've used the following configuration:
`
steps:
displayName: 'RegEx Find & Replace: Replace Databricks Repo Paths in Pipelines'
inputs:
InputSearchPattern: 'pipeline/.json'
FindRegex: '(/Repos/(.)/notebooks)/'
ReplaceRegex: '$1(notebooks)'
UseUTF8: false
UseRAW: false
`
But no change appears in the code on the branch.
The text was updated successfully, but these errors were encountered: