We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee78bfc commit fab6f47Copy full SHA for fab6f47
.github/workflows/sync-to-production.yaml
@@ -1,17 +1,16 @@
1
+# .github/workflows/sync-to-production.yaml
2
name: Sync main to sandbox-production
3
4
on:
5
workflow_dispatch:
6
-permissions:
7
- contents: write
8
- pull-requests: write
9
-
10
jobs:
11
sync:
12
runs-on: ubuntu-latest
13
+ permissions:
+ contents: write
14
steps:
15
- - name: Sync main to production branch and increment version
16
- uses: livekit-examples/sandbox-deploy-action
17
- secrets: inherit
+ - uses: livekit-examples/sandbox-deploy-action@v1
+ with:
+ production_branch: 'sandbox-production'
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments