Make masking (secrets) optional #1551
kzhuklinets
started this conversation in
Ideas
Replies: 2 comments 3 replies
-
@mburumaxwell any thoughts on this? I could wrap the |
Beta Was this translation helpful? Give feedback.
3 replies
-
Added in #1597, released in 1.44.0, and published in Example: trigger: none # Disable CI trigger
pool:
vmImage: 'ubuntu-latest' # requires macos or ubuntu (windows is not supported)
variables:
system.debug: 'true'
jobs:
- job: unprotected
variables:
System.Secrets: false
steps:
- task: dependabot@2
inputs:
skipPullRequests: true
- job: protected
variables:
System.Secrets: true
steps:
- task: dependabot@2
inputs:
skipPullRequests: true Please test and get back. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
We are trying to migrate to dependabot@2 and as we use a self-hosted Azure DevOps, we are struggling with issues described in here #1550, and the masking prevents from being sure regarding a root cause. If possible, could URLs be optional to be marked as secrets?
dependabot-azure-devops/extension/tasks/dependabotV2/index.ts
Line 38 in 873d430
Beta Was this translation helpful? Give feedback.
All reactions