Skip to content

Commit

Permalink
Merge pull request #631 from jamshale/adjust-auto-release-docs
Browse files Browse the repository at this point in the history
WIP
  • Loading branch information
jamshale authored Aug 14, 2024
2 parents 0e1a98f + ec2c4d0 commit bf65baf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/create-release-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ jobs:
for dir in ./*/; do
current_folder=$(basename "$dir")
# Skip plugin_globals and lite plugins
if [[ $current_folder == "plugin_globals" ] || [ elementIn $current_folder "${lite_plugin_array[@]}" ]]; then
if [ $current_folder == "plugin_globals" ] || [ elementIn $current_folder "${lite_plugin_array[@]}" ]; then
continue
fi
cd $current_folder/integration
Expand Down Expand Up @@ -346,8 +346,8 @@ jobs:
# Update the release notes with the upgraded plugins.
# For replacing with the sed command we need to double escape the newline and tab characters.
details=$(printf '### Plugins Upgraded For ACA-Py Release %s \n\t - ' "$release_version")
double_escape_details=$(printf '### Plugins Upgraded For ACA-Py Release %s \\n\\t - ' "$release_version")
details=$(printf '\n### Plugins Upgraded For ACA-Py Release %s \n- ' "$release_version")
double_escape_details=$(printf '\\n### Plugins Upgraded For ACA-Py Release %s \\n- ' "$release_version")
# For replacing the first occurence of ' - ' with the details
count=${#upgraded_plugins[*]}
Expand Down

0 comments on commit bf65baf

Please sign in to comment.