We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbf5587 commit 3ad629fCopy full SHA for 3ad629f
1 file changed
.github/workflows/configure_project.yml
@@ -46,7 +46,7 @@ jobs:
46
run: |
47
# This command finds all files and uses 'sed' to replace all the placeholders.
48
# The sed delimiter is changed from '/' to '|' to safely handle path names.
49
- find . -type f -not -path './.git/*' -exec sed -i \
+ find . -type f -not -path './.git/*' -not -path './.github/workflows/*' -exec sed -i \
50
-e "s|{{PROJECT_NAME}}|${{ github.event.inputs.new_project_name }}|g" \
51
-e "s|{{PROJECT_NAME_LOWER}}|${{ steps.set-variables.outputs.project_name_lower }}|g" \
52
-e "s|{{PROJECT_DESCRIPTION}}|${{ github.event.inputs.project_description }}|g" \
0 commit comments