Skip to content

Commit

Permalink
incorporate changes from mex-template
Browse files Browse the repository at this point in the history
  • Loading branch information
rababerladuseladim committed Feb 2, 2024
1 parent 420f0af commit 4d3f3da
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"checkout": null,
"commit": "fb8fdbbc28f15d99939d22915b49348150d1d534",
"commit": "f7dd31d03fb2fb3a21f75407b71f757e99a2bf67",
"context": {
"cookiecutter": {
"project_name": "extractors",
Expand Down
9 changes: 8 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
version: 2
updates:
- package-ecosystem: "github-actions"
allow:
- dependency-type: "all"
directory: "/"
open-pull-requests-limit: 1
schedule:
interval: "monthly"
- package-ecosystem: "pip"
allow:
- dependency-type: "all"
directory: "/"
open-pull-requests-limit: 1
schedule:
interval: "weekly"
interval: "daily"
4 changes: 3 additions & 1 deletion .github/workflows/cookiecutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Cookiecutter

on:
push:
branches: ["main"]
pull_request:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/cve-scan.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: CVE Scan

on:
push:
pull_request:
schedule:
- cron: '0 2 * * *'
- cron: '0 0 * * *'
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Documentation

on:
push:
branches: ["main"]
tags: ["**"]
workflow_dispatch:

env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Linting

on:
push:
pull_request:
workflow_dispatch:

env:
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/open-code.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: OpenCoDE

on:
push:
branches: ["main"]
tags: ["**"]
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-extractors.git
git push opencode -f
git push opencode -f --tags
1 change: 1 addition & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Testing

on:
push:
pull_request:
workflow_dispatch:

env:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changes

- incorporate changes from mex-template

### Deprecated

### Removed
Expand Down

0 comments on commit 4d3f3da

Please sign in to comment.