diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml new file mode 100644 index 0000000..1261ce5 --- /dev/null +++ b/.gitea/workflows/pull_request.yaml @@ -0,0 +1,31 @@ +name: Merge Build +run_name: Test successful build on merge request + +on: + pull_request: + types: [opened, reopened, edited, review_requested, synchronize] + +jobs: + Cepi_to_DB: + steps: + - uses: https://github.com/actions/checkout@v4 + + - uses: https://github.com/dtolnay/rust-toolchain@stable + + - name: Build + run: | + cd cepitodb-master + cargo build + + Database: + steps: + - uses: https://github.com/actions/checkout@v4 + + - uses: https://github.com/dtolnay/rust-toolchain@stable + + - name: Build + run: | + cd rust-database-master + cargo build + + diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..c02e8c6 --- /dev/null +++ b/renovate.json @@ -0,0 +1,14 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ], + "prHourlyLimit": 0, + "baseBranches": ["dev"], + "packageRules": [ + { + "matchUpdateTypes": ["minor", "patch"], + "automerge": true + } + ] +}