File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ name-template: '{{FOLDER}}{{FOLDER_SEP}}v$RESOLVED_VERSION'
8
8
tag-template : ' {{FOLDER}}{{FOLDER_SLASH}}v$RESOLVED_VERSION'
9
9
tag-prefix : ' {{FOLDER}}{{FOLDER_SLASH}}v'
10
10
include-paths :
11
- - {{FOLDER }}
11
+ - {{FOLDER_PATH }}
12
12
categories :
13
13
- title : ⚠️ Breaking Changes
14
14
labels :
Original file line number Diff line number Diff line change @@ -68,15 +68,18 @@ jobs:
68
68
folder_sep=""
69
69
folder_slash=""
70
70
folder_filename="core"
71
+ folder_path="."
71
72
else
72
73
# Any other module
73
74
folder_sep=" - "
74
75
folder_slash="/"
75
76
# Sanitize folder name for filename by replacing / with -
76
77
folder_filename=$(echo "$folder" | tr '/' '-')
78
+ folder_path="$folder"
77
79
fi
78
80
sed -e "s|{{FOLDER}}|$folder|g" \
79
81
-e "s|{{FOLDER_SEP}}|$folder_sep|g" \
82
+ -e "s|{{FOLDER_PATH}}|$folder_path|g" \
80
83
-e "s|{{FOLDER_SLASH}}|$folder_slash|g" \
81
84
.github/release-drafter-template.yml > .github/release-drafter-$folder_filename.yml
82
85
echo "config<<EOF" >> $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments