Skip to content

Commit f0338fd

Browse files
committed
Refactor workflow inputs for CI dispatch and push triggers
- Merged workflow inputs for 'create_release' and 'push' under a unified structure - Improved readability and consistency of CI trigger settings - Ensures boolean type consistency and adds support for future input expansion
1 parent b58b039 commit f0338fd

File tree

14 files changed

+16361
-126
lines changed

14 files changed

+16361
-126
lines changed

.github/workflows/Untitled-1.txt

Lines changed: 1812 additions & 0 deletions
Large diffs are not rendered by default.

.github/workflows/Untitled-2.txt

Lines changed: 1811 additions & 0 deletions
Large diffs are not rendered by default.

.github/workflows/Untitled-3.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
def hello_world():
2+
"""Prints 'Hello, World!' to the console."""
3+
# This is a simple function that prints a message
4+
# to the console. It demonstrates the use of a function
5+
# in Python.
6+
# The function does not take any arguments and does not return anything.
7+
# It simply executes the print statement when called.
8+
# The message is a common example used in programming tutorials.
9+
# The function is defined using the 'def' keyword followed by the function name
10+
# and parentheses. The body of the function is indented.
11+
# The print function is a built-in function in Python that outputs text to the console.
12+
# In this case, it outputs the string "Hello, World!".
13+
# The string is enclosed in double quotes, but single quotes could also be used.
14+
# The function can be called by using its name followed by parentheses.
15+
# This will execute the code inside the function and display the message.
16+
# The function can be called multiple times to print the message again.
17+
print("Hello, World!")
18+
19+
# Call the function to execute it and print the message
20+
hello_world() # Output: Hello, world!
21+
# Call the function to execute it and print the message
22+
23+
hello_world()

0 commit comments

Comments
 (0)