We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74f0fe2 commit 263a658Copy full SHA for 263a658
.github/workflows/sync-develop.yml
@@ -0,0 +1,15 @@
1
+# Designed to keep develop branch as a perfect copy of LabKey fork
2
+on:
3
+ schedule:
4
+ - cron: "*/15 * * * *"
5
+jobs:
6
+ sync-develop:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: "Sync Develop Branch"
10
+ uses: bimberlabinternal/DevOps/githubActions/git-sync@master
11
+ with:
12
+ source_repo: "labkey/LabDevKitModules"
13
+ source_branch: "develop"
14
+ destination_branch: "develop"
15
+ github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments