We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39b33d7 commit 42b6c1dCopy full SHA for 42b6c1d
.github/workflows/sync-develop.yml
…thub/workflows/sync-release-branches.yml .github/workflows/sync-repos.yml.github/workflows/sync-release-branches.yml renamed to .github/workflows/sync-repos.yml
@@ -1,7 +1,7 @@
1
# Designed to keep develop branch as a perfect copy of LabKey fork
2
on:
3
schedule:
4
- - cron: "*/15 * * * *"
+ - cron: "15 */3 * * *"
5
jobs:
6
sync-release-branches:
7
runs-on: ubuntu-latest
@@ -14,3 +14,13 @@ jobs:
14
destination_repo: "BimberLabInternal/LabDevKitModules"
15
destination_branch_prefix: "discvr-"
16
github_token: ${{ secrets.GITHUB_TOKEN }}
17
+ sync-develop:
18
+ runs-on: ubuntu-latest
19
+ steps:
20
+ - name: "Sync Develop Branch"
21
+ uses: bimberlabinternal/DevOps/githubActions/git-sync@master
22
+ with:
23
+ source_repo: "labkey/LabDevKitModules"
24
+ source_branch: "develop"
25
+ destination_branch: "develop"
26
+ github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments