Skip to content

Commit

Permalink
Adds weekly promotion and code owners (#261)
Browse files Browse the repository at this point in the history
* notification to Notification

* replaces gateway_url per environment

* add weekly promotion
  • Loading branch information
elliotBraem authored May 2, 2024
1 parent f70070a commit 08e0138
Show file tree
Hide file tree
Showing 4 changed files with 688 additions and 394 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/promote-develop-to-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: weekly-production-release

on:
schedule:
- cron: '0 0 * * 2,4'

permissions:
pull-requests: write

jobs:
pull-request:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/develop'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: pull-request
run: |
gh pr create --base main --head develop -f --title "weekly promotion of develop to main"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @Megha-Dev-19 @itexpert120 @Jikugodwill @elliotBraem
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"@babel/preset-react": "^7.14.5",
"assert": "^2.0.0",
"babel-loader": "^8.2.2",
"bos-workspace": "1.0.0-alpha.9",
"bos-workspace": "^1.0.0-alpha",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
Expand Down
Loading

0 comments on commit 08e0138

Please sign in to comment.