File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ name : " \U0001F41B Bug report"
3+ about : Create a report to help us improve
4+ title : ' '
5+ labels : bug
6+ assignees : ' '
7+
8+ ---
9+
10+ <!-- Thank you for reporting a possible bug. Please fill in as much of the template below as you can. -->
11+
12+ ** Describe the bug**
13+ <!-- A clear and concise description of what the bug is. -->
14+
15+ ** Steps to Reproduce**
16+ <!-- Steps to reproduce the behavior. -->
17+ 1 . Go to '...'
18+ 2 . Click on '....'
19+ 3 . Scroll down to '....'
20+ 4 . See error
21+
22+ ** Expected behavior**
23+ <!-- A clear and concise description of what you expected to happen. -->
24+
25+ ** Additional context**
26+ <!-- Add any other context about the problem here. -->
Original file line number Diff line number Diff line change 1+ ---
2+ name : " \U0001F680 Enhancement"
3+ about : Suggest an idea for this project
4+ title : ' '
5+ labels : enhancement
6+ assignees : ' '
7+
8+ ---
9+
10+ <!-- Thank you for suggesting an idea to make things better. Please fill in as much of the template below as you can. -->
11+
12+ ** Is your enhancement related to a problem? Please describe.**
13+ <!-- Please describe the problem you are trying to solve. -->
14+
15+ ** Describe the solution you'd like**
16+ <!-- Please describe the desired behavior. -->
17+
18+ ** Designs**
19+ <!-- If applicable, add mockups/screenshots/etc. to help explain your solution. -->
20+
21+ ** Describe alternatives you've considered**
22+ <!-- Please describe alternative solutions or features you have considered. -->
23+
24+ ** Additional context**
25+ <!-- Add any other context about the enhancement here. -->
Original file line number Diff line number Diff line change 1+ ---
2+ name : " ❓ Need help?"
3+ about : Ask us a question, we're here to help!
4+ title : ' '
5+ labels : question
6+ assignees : ' '
7+
8+ ---
9+
10+ <!-- If you have a question that is neither a bug report nor an enhancement, then please post it here! Please fill in as much of the template below as you can. -->
11+
12+ ** Describe your question**
13+ <!-- A clear and concise description of what your question is. -->
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ echo "ℹ︎ SLUG is $SLUG"
2929# Does it even make sense for VERSION to be editable in a workflow definition?
3030if [[ -z " $VERSION " ]]; then
3131 VERSION=${GITHUB_REF# refs/ tags/ }
32+ VERSION=$( echo $VERSION | sed -e " s/^v//" )
3233fi
3334echo " ℹ︎ VERSION is $VERSION "
3435
9293fi
9394
9495# Copy dotorg assets to /assets
95- rsync -rc " $GITHUB_WORKSPACE /$ASSETS_DIR /" assets/ --delete
96+ if [[ -d " $GITHUB_WORKSPACE /$ASSETS_DIR /" ]]; then
97+ rsync -rc " $GITHUB_WORKSPACE /$ASSETS_DIR /" assets/ --delete
98+ else
99+ echo " ℹ︎ No assets directory found; skipping asset copy"
100+ fi
96101
97102# Add everything and commit to SVN
98103# The force flag ensures we recurse into subdirectories even if they are already added
You can’t perform that action at this time.
0 commit comments