File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,12 @@ def main():
124
124
demo_path_output = f'<a href="{ demo_path } " title="view the result of { title } ">/{ REPO_NAME } /{ title } /</a>'
125
125
if title == 'root' or title == '{init}' :
126
126
demo_path_output = f'<a href="{ demo_path } " title="view the result of { title } ">/{ REPO_NAME } /</a>'
127
-
127
+ elif title == '{workflows}' :
128
+ demo_path_output = f'<a href="{ demo_path } " title="view the result of { title } ">/{ REPO_NAME } /.github/workflows</a>'
129
+ elif title == '{scripts}' :
130
+ demo_path_output = f'<a href="{ demo_path } " title="view the result of { title } ">/{ REPO_NAME } /.github/scripts</a>'
131
+ elif title == '{others}' :
132
+ demo_path_output = f'<a href="{ demo_path } " title="view the result of { title } ">/{ REPO_NAME } /.github</a>'
128
133
129
134
# Appending all data together
130
135
updated_lines .append ('\t <tr align="center">\n ' )
@@ -149,4 +154,4 @@ def main():
149
154
150
155
151
156
if __name__ == '__main__' :
152
- main ()
157
+ main ()
You can’t perform that action at this time.
0 commit comments