Skip to content

Commit

Permalink
feature/mx-1522 add open-code workflow for mex-template
Browse files Browse the repository at this point in the history
  • Loading branch information
cutoffthetop committed Jan 18, 2024
1 parent d8fb2ee commit 13034bb
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/pull_request_template.md
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 -->
22 changes: 22 additions & 0 deletions .github/workflows/open-code.yml
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

0 comments on commit 13034bb

Please sign in to comment.