-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from IDEA-Research/dev
release: v0.2.0
- Loading branch information
Showing
127 changed files
with
2,654 additions
and
1,418 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# for git | ||
.git | ||
.github | ||
.gitignore | ||
|
||
# for dev | ||
.idea | ||
.husky | ||
.vscode | ||
.commitlintrc | ||
|
||
# for local cache | ||
data | ||
dist | ||
node_modules | ||
deepdataspace.egg-info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Sync Dev to Private Repo | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
jobs: | ||
merge-and-rebase: | ||
if: github.repository_owner == 'IDEA-Research' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Private Repo | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: deepdataspace/deepdataspace | ||
ref: dev | ||
token: ${{ secrets.PRIVATE_REPO_TOKEN }} | ||
|
||
- name: Add Public Remote | ||
run: | | ||
git remote add public https://github.com/IDEA-Research/deepdataspace.git | ||
- name: Rebase Private Repo | ||
run: | | ||
git pull public dev --rebase | ||
- name: Push Private Repo | ||
run: | | ||
git push |
Oops, something went wrong.