Skip to content

Commit

Permalink
feat/fix: Create github_actions_error_logs.txt to
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Jan 10, 2024
1 parent 5c52059 commit d73bb37
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions github_actions_error_logs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Import necessary modules or libraries for file handling

# Create a new file named github_actions_error_logs.txt
file_path = "github_actions_error_logs.txt"
file = open(file_path, "w")

# Write the error logs to the file
error_logs = """
<error_log>
Error log 1
Error log 2
Error log 3
</error_log>
"""
file.write(error_logs)

# Close the file
file.close()

0 comments on commit d73bb37

Please sign in to comment.