Skip to content

Commit

Permalink
Add a mirror branch of main for with-dev-backend
Browse files Browse the repository at this point in the history
  • Loading branch information
N2D4 committed Jul 6, 2024
1 parent 05ed1ba commit c1098bb
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/mirror-to-wdb.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Mirror main branch to main-mirror-for-wdb

on:
push:
branches:
- with-dev-backend

jobs:
lint_and_build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v3

- name: Mirror branch
run: |
git checkout main
git fetch origin main
git checkout -b main-mirror-for-wdb
git reset --hard main
git push origin main-mirror-for-wdb --force

0 comments on commit c1098bb

Please sign in to comment.