-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature/mx-1522 add open-code workflow for mex-template
- Loading branch information
1 parent
d8fb2ee
commit 13034bb
Showing
2 changed files
with
42 additions
and
0 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,20 @@ | ||
# PR Context | ||
<!-- Additional info for the reviewer --> | ||
|
||
# Added | ||
<!-- New features and interfaces --> | ||
|
||
# Changes | ||
<!-- Changes in existing functionality --> | ||
|
||
# Deprecated | ||
<!-- Soon-to-be removed features --> | ||
|
||
# Removed | ||
<!-- Definitely removed features --> | ||
|
||
# Fixed | ||
<!-- Fixed bugs --> | ||
|
||
# Security | ||
<!-- Fixed vulnerabilities --> |
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,22 @@ | ||
name: OpenCoDE | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
sync: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: 'main' | ||
fetch-depth: 0 | ||
- name: Push main branch | ||
run: | | ||
git remote add opencode https://${{ secrets.OPENCODE_USER }}:${{ secrets.OPENCODE_TOKEN }}@gitlab.opencode.de/robert-koch-institut/mex/mex-template.git | ||
git push opencode -f | ||
git push opencode -f --tags |