-
Notifications
You must be signed in to change notification settings - Fork 6
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 #206 from meaningfy-ws/master
SEMIC model2owl features from meaningfy fork
- Loading branch information
Showing
38 changed files
with
1,611 additions
and
521 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,60 @@ | ||
name: Update github model2owl-validator repo | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
copy-and-commit: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout model2owl repository | ||
uses: actions/checkout@v2 | ||
|
||
|
||
- name: Copy folder to destination repository | ||
run: | | ||
cd .. | ||
pwd | ||
ls -la | ||
mkdir copied-src-folder | ||
ls -la | ||
echo "directory to copy src folder was created" | ||
cp -r model2owl/src copied-src-folder | ||
ls -la copied-src-folder | ||
ls -la copied-src-folder/src | ||
- name: Configure Git | ||
run: | | ||
git config --global user.email "action@github.com" | ||
git config --global user.name "github-actions" | ||
- name: Checkout model2owl validator repository | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: meaningfy-ws/model2owl-validator | ||
token: ${{ secrets.GIT_USER }} | ||
- name: second clone | ||
run: | | ||
ls -la | ||
- name: Copy folder to destination repository | ||
run: | | ||
pwd | ||
ls -la | ||
cd .. | ||
ls -la | ||
cp -r copied-src-folder/src model2owl/resources/ | ||
cd model2owl/resources | ||
ls -la | ||
- name: Commit and Push to destination repository | ||
run: | | ||
git add . | ||
git commit -m "Copy src folder from model2owl repository" | ||
git status | ||
git remote -v | ||
git push -f https://${{ secrets.GIT_USER }}@github.com/meaningfy-ws/model2owl-validator.git main |
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
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
Oops, something went wrong.