Skip to content

Commit

Permalink
Tools: Handle Proposed the same as Experimental for GitHub tags
Browse files Browse the repository at this point in the history
Previously changes to Proposed status asked for Council approval, when it should only require author approval.
As Proposed is basically Experimental, just after Last Call was started, it is the task of the author to incorporate feedback with no further involvement of Council needed.
  • Loading branch information
mar-v-in authored Jan 8, 2025
1 parent e94416a commit 7940f22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/github_auto_triage_pr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ do

status="$(xpath "$xep" '/xep/header/status/text()')"
approvers=""
if echo "$status" | grep -E '^(Experimental|Deferred)$' &>/dev/null
if echo "$status" | grep -E '^(Experimental|Proposed|Deferred)$' &>/dev/null
then
# Experimental or Deferred
# Experimental, Proposed or Deferred
if [ "$status" == 'Deferred' ]
then
add_tag "Needs Editor Action"
Expand All @@ -115,7 +115,7 @@ do

approvers="$(xpath "$xep" '/xep/header/author/email/text()' | sort -u)"
else
# *not* Experimental or Deferred
# *not* Experimental, Proposed or Deferred
approvers="$(xpath "$xep" '/xep/header/approver/text()' 2>/dev/null || echo 'Unknown')"
fi

Expand Down

0 comments on commit 7940f22

Please sign in to comment.