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 6c49b99 commit 0abeac1Copy full SHA for 0abeac1
.github/workflows/create_release_tag.py
@@ -6,6 +6,8 @@
6
import sys
7
8
TARGET_FILE = "src/index.json"
9
+# Get API URLs from environment
10
+RELEASE_API_URL, TAG_API_URL = get_api_urls()
11
12
def get_api_urls() -> Tuple[str, str]:
13
"""Generate GitHub API URLs based on GITHUB_REPOSITORY environment variable."""
@@ -84,9 +86,6 @@ def main():
84
86
"Accept": "application/vnd.github.v3+json"
85
87
}
88
- # Get API URLs from environment
- RELEASE_API_URL, TAG_API_URL = get_api_urls()
89
-
90
try:
91
added_lines = get_file_changes()
92
if not added_lines:
0 commit comments