Skip to content

Commit 0065338

Browse files
committed
Don't modify non-LabKey workflows
1 parent 6b8c479 commit 0065338

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: "Build DISCVR"
16-
uses: bimberlabinternal/DevOps/githubActions/discvr-build@develop
16+
uses: bimberlabinternal/DevOps/githubActions/discvr-build@master
1717
with:
1818
artifactory_user: ${{secrets.artifactory_user}}
1919
artifactory_password: ${{secrets.artifactory_password}}

.github/workflows/sync-repos.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Designed to keep develop branch as a perfect copy of LabKey fork
1+
# Designed to keep master branch as a perfect copy of LabKey fork
22
name: Sync Repos
33

44
on:
@@ -11,22 +11,22 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: "Sync Release Branches"
14-
uses: bimberlabinternal/DevOps/githubActions/branch-create@develop
14+
uses: bimberlabinternal/DevOps/githubActions/branch-create@master
1515
with:
1616
source_repo: "labkey/DiscvrLabKeyModules"
1717
source_branch_prefix: "release"
1818
destination_repo: "BimberLab/DiscvrLabKeyModules"
1919
destination_branch_prefix: "discvr-"
2020
# NOTE: permissions are limited on the default secrets.GITHUB_TOKEN, including updating workflows, so use a personal access token
2121
github_token: ${{ secrets.PAT }}
22-
sync-develop:
22+
sync-master:
2323
if: github.repository == 'BimberLab/DiscvrLabKeyModules'
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: "Sync Develop Branch"
27-
uses: bimberlabinternal/DevOps/githubActions/git-sync@develop
27+
uses: bimberlabinternal/DevOps/githubActions/git-sync@master
2828
with:
2929
source_repo: "labkey/DiscvrLabKeyModules"
30-
source_branch: "develop"
31-
destination_branch: "develop"
30+
source_branch: "master"
31+
destination_branch: "master"
3232
github_token: ${{ secrets.PAT }}

0 commit comments

Comments
 (0)