Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .github/PULL_REQUEST_TEMPLATE/feature.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Fix:
closes #

Issue(s):
Describe what the bug was.
Description:
Describe what the bug was or what the feature is.
e.g. On the README page, the typed in message "Computing Science Student Society" was wrapping on letters rather than words.

# FOR BUGS
Root cause:
Explain the root cause of the issue.
e.g. Since the animation used GSAP's split by chars feature, each individual letter was its own inline-block, which means word wrapping wouldn't work since they were all separate divs.
Expand All @@ -13,6 +13,12 @@ Fix:
Describe your solution.
e.g. Added reverted the letters back to a single div using `split.revert()` once the animation has completed.

# FOR FEATURES
Features:
* Create a list of features that were added
* These features should explain workflows for end user, how to access the feature, and any requirements the end user should know
* If you developed a new module/framework for developers, mention it here too

(optional) Future issues:
If you foresee your fix causing an issue in the future mention it here.
If you foresee your change causing an issue in the future then mention it here.
If it's something we'll need to address then we can open another issue to address this one.
Original file line number Diff line number Diff line change
Expand Up @@ -20,31 +20,31 @@ jobs:
with:
node-version: '22.x'
- run: npm ci
- run: npm run build --if-present
- run: npm run build

- name: Preserve build output when moving branches
run: mv build ../build-tmp
# If this is not done then the build folder will be lost when we switch branches
run: mv dist/csss-ng-frontend/browser ../build-tmp

- name: Switch to the build branch and clean it
run: |
# Based off the script `./scripts/deploy_to_branch.sh`
# The branch we are publishing to
# Get the latest on the branch that builds are held in and switch to it
git fetch origin build
git switch build
# Remove everything in order to copy everything over
rm -rf *

- name: Copy the built files over to the root directory and push to `build`
run: |
# Set up a dummy user and email for identification purposes
cp -R ../build-tmp/* .
rm -f ./js/*.LICENSE.txt

- name: Commit and push
run: |
# Set up a dummy user and email for identification purposes
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@user.noreply.github.com"
git add .
git commit -m "Updating `build` with PR#${{ github.event.pull_request.number }}: ${{ github.event.pull_request.title }}"
git commit -m "${{ github.event.pull_request.title }}"
git push origin build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading