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 aea2144 commit 1c5a1e2Copy full SHA for 1c5a1e2
delete-tag.ps1
@@ -18,7 +18,7 @@ function DeleteTags {
18
$response = Invoke-RestMethod -Uri $urlTags -Headers $headers -Method Get
19
20
foreach ($tag in $response) {
21
- $tagName = $tag.ref
+ $tagName = $tag.url
22
23
if ($tagName -like "*$keyword*") {
24
$deleteUrl = "https://api.github.com/repos/$owner/$repo/git/$tagName"
0 commit comments