forked from quicwg/base-drafts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tag.sh
executable file
·46 lines (41 loc) · 1.09 KB
/
tag.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Tag files for submission.
#
# You shouldn't need to use this unless you are tagging files for which you are
# not an author. Use `git tag -a` instead.
#
# This script exists because
# https://trac.tools.ietf.org/tools/ietfdb/ticket/2390 still isn't fixed.
if [[ $# -eq 0 ]]; then
files=(transport tls recovery http)
else
files=("$@")
fi
enabled() {
r="$1"; shift
for e; do [[ "$e" == "$r" ]] && return 0; done
return 1
}
declare -A authors=( \
[transport][email protected] \
[tls][email protected] \
[recovery][email protected] \
[http][email protected] \
[invariants][email protected] \
[qpack][email protected] \
[spin-exp][email protected] \
)
all=($(make show-next))
tags=()
thisuser=$(git config --get user.name)
for t in "${all[@]}"; do
r="${t%-[0-9][0-9]}"
r="${r#draft-ietf-quic-}"
if enabled "$r" "${files[@]}"; then
message="Tag for $t created by $thisuser"
git -c user.email="${authors[$r]}" tag -am "$message" "$t"
tags+=("$t")
fi
done
for t in "${tags[@]}"; do
git push origin "$t"
done