diff --git a/.github/workflows/sync_lutra.yml b/.github/workflows/sync_lutra.yml new file mode 100644 index 000000000..9ef54b231 --- /dev/null +++ b/.github/workflows/sync_lutra.yml @@ -0,0 +1,28 @@ +name: Sync fork + +on: + workflow_dispatch: + push: + branches: + - master + - develop + +jobs: + sync: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + ref: ${{ github.event_name == 'workflow_run' || github.head_ref || github.ref_name }} + - uses: webfactory/ssh-agent@v0.9.0 + with: + ssh-private-key: ${{ secrets.LUTRA_FORK_KEY }} + - name: Push to fork repo + env: + USE_SSH: true + run: | + git remote add fork git@github.com:lutralabs/masca.git + git config --global user.email "info@lutralabs.com" + git config --global user.name "Lutra Labs Bot" + git push fork --force diff --git a/package.json b/package.json index 0133e6e55..04d8ba3f8 100644 --- a/package.json +++ b/package.json @@ -61,7 +61,7 @@ "ts-node": "^10.9.2", "typescript": "^5.4.5" }, - "packageManager": "pnpm@9.1.0", + "packageManager": "pnpm@9.1.1", "engines": { "node": ">=20.13.1" },