From 44faaa22e3bf77bd9ba829d2c92ac61b970c8e96 Mon Sep 17 00:00:00 2001 From: 5an7y Date: Mon, 14 Jul 2025 11:23:41 -0700 Subject: Correct sample issue path --- .github/ISSUE_TEMPLATE/sample_issue_generator.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/sample_issue_generator.py b/.github/ISSUE_TEMPLATE/sample_issue_generator.py index eafffcc4..4b6eee64 100644 --- a/.github/ISSUE_TEMPLATE/sample_issue_generator.py +++ b/.github/ISSUE_TEMPLATE/sample_issue_generator.py @@ -67,5 +67,6 @@ yaml_form["body"].append(dropdown) yaml_form["body"].append(description_field) # Write the YAML to a file -with open("sample_issue.yml", "w") as outfile: +output_path = os.path.join(os.path.dirname(__file__), "sample_issue.yml") +with open(output_path, "w") as outfile: yaml.dump(yaml_form, outfile, sort_keys=False) -- cgit v1.3.1