Add actions and renovate files
This commit is contained in:
parent
1412c8b051
commit
7f482d0fe5
2 changed files with 45 additions and 0 deletions
31
.gitea/workflows/pull_request.yaml
Normal file
31
.gitea/workflows/pull_request.yaml
Normal file
|
@ -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
|
||||
|
||||
|
14
renovate.json
Normal file
14
renovate.json
Normal file
|
@ -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
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue