Skip to content
This repository was archived by the owner on Dec 25, 2025. It is now read-only.

Commit 42e8d22

Browse files
committed
output of parsed data
1 parent 7261796 commit 42e8d22

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

action.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ runs:
8282
- name: Checkout parsed data
8383
shell: bash
8484
run: |
85-
echo "Repo ${{ steps.config.outputs.template_repository }}"
86-
echo "Branch ${{ steps.config.outputs.template_branch }}"
87-
echo "Include ${{ steps.config.outputs.include }}"
88-
echo "Exclude ${{ steps.config.outputs.exclude }}"
85+
echo "Template repository: ${{ steps.config.outputs.template_repository }}"
86+
echo "Branch in template: ${{ steps.config.outputs.template_branch }}"
87+
echo "Include:\n ${{ steps.config.outputs.include }}"
88+
echo "Exclude:\n ${{ steps.config.outputs.exclude }}"
8989
9090
- name: Sparse checkout template
9191
uses: actions/checkout@v5
@@ -103,6 +103,8 @@ runs:
103103
shell: bash
104104
working-directory: .template-temp
105105
run: |
106+
echo "Checkout template after sparse checkout"
107+
ls -all
106108
rm -rf .git
107109
[[ -n "${{ steps.config.outputs.exclude }}" ]] && while IFS= read -r item; do
108110
item="$(echo "$item" | xargs)"

0 commit comments

Comments
 (0)