Skip to content

Commit 6f1e1e9

Browse files
authored
Merge pull request #84 from BimberLab/develop
Merge bimberlab/develop to labkey/develop
2 parents e5093b8 + 9eeb7b9 commit 6f1e1e9

File tree

3 files changed

+26
-65
lines changed

3 files changed

+26
-65
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for GitHub Actions
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build DISCVR
2+
on:
3+
push:
4+
pull_request:
5+
jobs:
6+
build-modules:
7+
# See: https://help.github.com/en/actions/reference/contexts-and-expression-syntax-for-github-actions#github-context
8+
# https://help.github.com/en/actions/configuring-and-managing-workflows/using-environment-variables#default-environment-variables
9+
if: github.repository == 'BimberLab/DiscvrLabKeyModules'
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: "Build DISCVR"
13+
uses: bimberlabinternal/DevOps/githubActions/discvr-build@master
14+
with:
15+
artifactory_user: ${{secrets.artifactory_user}}
16+
artifactory_password: ${{secrets.artifactory_password}}
17+
# NOTE: permissions are limited on the default secrets.GITHUB_TOKEN, including updating workflows, so use a personal access token
18+
github_token: ${{ secrets.PAT }}
19+

.travis.yml

Lines changed: 0 additions & 65 deletions
This file was deleted.

0 commit comments

Comments
 (0)