-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
67 additions
and
10 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,29 @@ | ||
name: "Update Tagged Releases" | ||
on: | ||
schedule: | ||
- cron: "30 8 1 * *" | ||
|
||
jobs: | ||
refresh-modules: | ||
name: Refresh Submodules | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
with: | ||
persist-credentials: false | ||
fetch-depth: 0 | ||
ref: releases | ||
- name: Merge changes to releases | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git merge origin/master --strategy-option theirs | ||
git submodule foreach 'git reset HEAD $path' | ||
git submodule foreach 'git checkout `git describe --tags $(git rev-list --tags --max-count=1)`' | ||
git add -A . | ||
git commit -m "Merge master into releases" -a | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: releases |
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: "Refresh Submodules" | ||
on: | ||
schedule: | ||
- cron: "0 8 * * 1" | ||
|
||
jobs: | ||
refresh-modules: | ||
name: Refresh Submodules | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
with: | ||
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token | ||
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo | ||
- name: Create local changes | ||
run: | | ||
git submodule update --init --recursive | ||
git submodule update --recursive --remote | ||
- name: Commit files | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git commit -m "Update Submodules" -a | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: ${{ github.ref }} |
Submodule cosmos-flink
updated
19 files
+29 −0 | .github/pull_request_template.md | |
+45 −0 | .github/workflows/ci.yml | |
+34 −0 | .github/workflows/cla.yml | |
+2 −1 | .gitignore | |
+0 −34 | .travis.yml | |
+101 −0 | CODE_OF_CONDUCT.md | |
+44 −0 | CONTRIBUTING.md | |
+0 −1 | CONTRIBUTIONS.md | |
+5 −4 | README.md | |
+ − | cosmos-individual-cla.pdf | |
+0 −1 | doc/contributing.md | |
+2 −2 | doc/getting_started.md | |
+2 −3 | doc/index.md | |
+0 −1 | mkdocs.yml | |
+6 −6 | package.json | |
+5 −5 | pom.xml | |
+1 −1 | src/test/scala/org.fiware.cosmos.orion.flink.connector.tests/OrionConnectorTest.scala | |
+0 −3,612 | yarn-error.log | |
+0 −3,518 | yarn.lock |
Submodule cosmos-spark
updated
18 files
+29 −0 | .github/pull_request_template.md | |
+45 −0 | .github/workflows/ci.yml | |
+34 −0 | .github/workflows/cla.yml | |
+2 −1 | .gitignore | |
+0 −34 | .travis.yml | |
+101 −0 | CODE_OF_CONDUCT.md | |
+44 −0 | CONTRIBUTING.md | |
+0 −1 | CONTRIBUTIONS.md | |
+6 −5 | README.md | |
+ − | cosmos-individual-cla.pdf | |
+6 −6 | dependency-reduced-pom.xml | |
+0 −1 | doc/contributing.md | |
+2 −2 | doc/getting_started.md | |
+5 −3 | doc/index.md | |
+2 −4 | doc/usage.md | |
+0 −1 | mkdocs.yml | |
+4 −4 | package.json | |
+5 −5 | pom.xml |
Submodule draco
updated
12 files
Submodule stellio
updated
60 files
Submodule logic-proxy
updated
42 files
Submodule documentation
updated
48 files
Submodule keyrock
updated
84 files
Submodule wilma
updated
13 files
+29 −0 | .github/pull_request_template.md | |
+99 −0 | .github/workflows/ci.yml | |
+34 −0 | .github/workflows/cla.yml | |
+0 −85 | .travis.yml | |
+101 −0 | CODE_OF_CONDUCT.md | |
+42 −0 | CONTRIBUTING.md | |
+2 −1 | README.md | |
+3 −3 | config.js | |
+7 −5 | extras/docker/hooks/build | |
+2 −0 | extras/docker/hooks/post_push | |
+1 −1 | package.json | |
+20 −0 | signatures/version1/cla.json | |
+ − | wilma-individual-cla.pdf |
Submodule domibus
updated
from e9f749 to deb1a9