Skip to content

Commit

Permalink
Attempt at rebuilding staging branches
Browse files Browse the repository at this point in the history
  • Loading branch information
Charl1996 committed Oct 22, 2024
1 parent e719f58 commit e069cb8
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scripts/rebuildstaging
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

function rebuildstaging() {
echo "Rebuilding staging branch..."
git-build-branch scripts/staging.yml
}

rebuildstaging
10 changes: 10 additions & 0 deletions scripts/staging.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This file is used to keep track of which feature branches
# should be in the `staging` branch.
# How it works:
# 1. Add your feature branch to the end of the list
# 2. Run ./scripts/rebuildstaging to rebuild the `staging` branch
# 3. Push the `staging` branch and deploy the code (this is a manual process at the moment)
trunk: master
name: staging
branches:
- cs/SC-3473-user-roles-from-hq
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
'Werkzeug==2.3.3',
'WTForms==2.3.3',
],
extras_require={
'dev': [
'git-build-branch',
],
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.9'
Expand Down

0 comments on commit e069cb8

Please sign in to comment.