Skip to content

Commit bc7efdf

Browse files
authored
Merge branch 'master' into batch-integ-considerations
2 parents 572db92 + 5e58546 commit bc7efdf

File tree

4 files changed

+1239
-320
lines changed

4 files changed

+1239
-320
lines changed

.github/scripts/assign_xls_number.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def set_github_output(name: str, value: str):
121121

122122
for draft_dir in sorted(draft_dirs):
123123
assigned_number = next_number
124-
new_dir_name = re.sub(r"^XLS-draft-", f"XLS-{assigned_number:04d}-", draft_dir)
124+
new_dir_name = re.sub(r"^xls-draft-", f"xls-{assigned_number:04d}-", draft_dir.lower())
125125
assignments.append({
126126
"draft": draft_dir,
127127
"number": assigned_number,
@@ -143,7 +143,7 @@ def set_github_output(name: str, value: str):
143143

144144
# For single draft case, also output individual values for easy access
145145
if len(assignments) == 1:
146-
set_github_output("xls_number", f"{assignments[0]['number']:04d}")
146+
set_github_output("xls_number", f"{assignments[0]['number']}")
147147
set_github_output("draft_dir", assignments[0]['draft'])
148148
set_github_output("new_dir_name", assignments[0]['new_name'])
149149

.github/workflows/discussions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
contents: read # Required to checkout the repository
1111

1212
env:
13-
STALE_DAYS: 730 # Number of days without updates to consider a discussion stale (2 years)
13+
STALE_DAYS: 550 # Number of days without updates to consider a discussion stale (1.5 years)
1414
WARNING_DAYS: 30 # Number of days to wait after warning before closing
1515
WARNING_MESSAGE:
1616
| # note: the marker is necessary for the script and should not be removed

0 commit comments

Comments
 (0)