Joey Armstrong | 3134bfd | 2024-02-10 20:51:25 -0500 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | declare -a args=() |
| 4 | args+=('--project' 'SEBA') |
| 5 | args+=('--project' 'VOL') |
| 6 | |
| 7 | args+=('--opencord') |
| 8 | args+=('--resolved-start' '2022-12-31') |
| 9 | args+=('--resolved-end' '2024-12-3'1) |
| 10 | |
| 11 | args+=('--resolved-excl' "Duplicate") |
| 12 | args+=('--resolved-excl' "Won't Do") |
| 13 | args+=('--resolved-excl' "Won't Fix") |
| 14 | |
| 15 | args+=('--resolved-not-empty') |
| 16 | |
| 17 | # args+=('--fixversion-excl' 'VOLTHA v2.13') |
| 18 | args+=('--fixversion-is-empty') |
| 19 | # args+=('--unresolved') |
| 20 | |
| 21 | jira-search.sh "${args[@]}" |
| 22 | |
| 23 | # [EOF] |