1
0
mirror of https://codeberg.org/fediverse/fep.git synced 2026-08-05 11:46:04 +00:00

FEP-a4ed: Withdraw stale proposals (#543)

FEP-a4ed requires facilitators to contact authors of a stale proposal before withdrawing it. As our experience shows, that doesn't work. In this PR I propose withdrawing stale proposals after 1 year of inactivity without contacting authors.

This is a major change. I think even if we agree on it, existing proposals should be handled according to the old procedure.

Resolves https://codeberg.org/fediverse/fep/issues/101

Reviewed-on: https://codeberg.org/fediverse/fep/pulls/543
Reviewed-by: Arnold Schrijver <circlebuilder@noreply.codeberg.org>
Co-authored-by: silverpill <silverpill@firemail.cc>
Co-committed-by: silverpill <silverpill@firemail.cc>
This commit is contained in:
silverpill
2025-06-24 15:43:41 +02:00
committed by David Sterry
parent a5648516b6
commit fa3c8edeb6
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ DRAFT_FEP_LABEL = 149758
def create_body(filename: str, date_received: date):
date1 = date_received.isoformat()
date2 = (date_received + timedelta(days=365)).isoformat()
date2 = (date_received + timedelta(days=365 * 2)).isoformat()
body = f"""
The [proposal](https://codeberg.org/fediverse/fep/src/branch/main/{filename}) has been received. Thank you!
@@ -20,7 +20,7 @@ Please post links to relevant discussions as comments to this issue.
`dateReceived`: {date1}
If no further actions are taken, the proposal may be set by the facilitators to `WITHDRAWN` on {date2} (in 1 year).
If no further actions are taken, the proposal will be set by the facilitators to `WITHDRAWN` on {date2} (in 2 years).
"""
return body