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
1 change: 1 addition & 0 deletions .github/workflows/new-adventure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
git checkout -b "$BRANCH"
git add -A
git commit -m "feat: scaffold adventure ${ADVENTURE_ID}"
git push origin --delete "$BRANCH" 2>/dev/null || true
git push origin "$BRANCH"
{
printf '## New Adventure Scaffolded\n\n'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/new-level.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
git checkout -b "$BRANCH"
git add -A
git commit -m "feat: add ${LEVEL} level to ${ADVENTURE}"
git push origin --delete "$BRANCH" 2>/dev/null || true
git push origin "$BRANCH"
{
printf '## New Level Added\n\n'
Expand Down
Loading