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 f3c2f24 commit 00ba870Copy full SHA for 00ba870
main.py
@@ -44,7 +44,7 @@ def exclude_languages(language_list):
44
def set_action_output(output_name, value) :
45
if "GITHUB_OUTPUT" in os.environ :
46
with open(os.environ["GITHUB_OUTPUT"], "a") as f :
47
- print("Detected languages: {0}={1}".format(output_name, value), file=f)
+ print("{0}={1}".format(output_name, value), file=f)
48
49
def main():
50
languages = get_languages()
0 commit comments