We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4045da commit bb43c30Copy full SHA for bb43c30
.github/workflows/create-outdated-packages-issue.yml
@@ -40,8 +40,9 @@ jobs:
40
$end = $json.body.IndexOf("-->") + 3;
41
$header = $json.body.Substring($start, $end - $start)
42
$hash = $header.Split("hash:")[1].Split("`n")[0].Trim();
43
- "ISSUE_NUMBER=$($json.number)
44
- ISSUE_HASH=$hash" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append;
+ echo ISSUE_HASH=$hash >> $env:GITHUB_OUTPUT;
+ echo ISSUE_NUMBER=$json.number >> $env:GITHUB_OUTPUT;
45
+ # "ISSUE_HASH=$hash" | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append;
46
echo "Existing issue detected: `n - number: $($json.number)`n - hash: $hash";
47
shell: pwsh
48
env:
0 commit comments