mirror of
https://github.com/pockethost/pockethost.git
synced 2025-06-06 14:16:41 +00:00
Include fix/ branches in freshening
This commit is contained in:
parent
47df986dae
commit
0e1afe5a4f
@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Get all branches that start with 'feat/' and store them in an array
|
# Get all branches that start with 'feat/' and store them in an array
|
||||||
feat_branches=($(git branch | grep '^ feat/' | sed 's/ //'))
|
feat_branches=($(git branch --list 'feat/*' 'fix/*' | sed 's/ //'))
|
||||||
|
|
||||||
# Loop through each 'feat/' branch
|
# Loop through each 'feat/' branch
|
||||||
for branch in "${feat_branches[@]}"; do
|
for branch in "${feat_branches[@]}"; do
|
||||||
|
Loading…
x
Reference in New Issue
Block a user