We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 137af43 commit 1382384Copy full SHA for 1382384
.github/workflows/Action-Test.yml
@@ -36,6 +36,7 @@ jobs:
36
- name: Action-Test
37
uses: ./
38
with:
39
+ Debug: true
40
Script: |
41
$scopes = 'local', 'global', 'system'
42
$scopes | ForEach-Object {
@@ -50,6 +51,8 @@ jobs:
50
51
$configList = $configList | Sort-Object
52
$configList | ForEach-Object {
53
$name, $value = $_ -split '=', 2
54
+ Write-Debug "Name: $name"
55
+ Write-Debug "Value: $value"
56
if ($value -match '(?i)AUTHORIZATION:\s*(?<scheme>[^\s]+)\s+(?<token>.*)') {
57
$secret = $matches['token']
58
Add-GitHubMask -Value $secret
0 commit comments