Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .github/workflows/auto-set-label.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/oaev_auto_label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "[OAEV] Auto Label"
on:
pull_request:
branches: [main, release/current]
types: [opened, reopened]
permissions:
contents: read
pull-requests: write
jobs:
auto-label:
runs-on: ubuntu-latest
steps:
- name: "Auto Label"
uses: FiligranHQ/filigran-ci-tools/actions/auto-label@main
13 changes: 13 additions & 0 deletions .github/workflows/oaev_check_signed_commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "[OAEV] Check Signed Commits in PR"
on:
pull_request_target:
branches: [main, release/current]
permissions:
contents: read
pull-requests: write
jobs:
check-signed-commits:
runs-on: ubuntu-latest
steps:
- name: Check signed commits in PR
uses: FiligranHQ/filigran-ci-tools/actions/check-signed-commit@main
20 changes: 20 additions & 0 deletions .github/workflows/oaev_validate_pr_title.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "[OAEV] Validate PR title Worker"
on:
pull_request:
branches: [main, release/current]
types: [opened, edited, reopened, ready_for_review, synchronize]
jobs:
validate-pr-title:
runs-on: ubuntu-latest
steps:
- name: "Generate a token"
id: generate-token
if: github.event.pull_request.head.repo.full_name == github.repository
uses: actions/create-github-app-token@v2
with:
app-id: ${{ secrets.OPENAEV_PR_CHECKS_APP_ID }}
private-key: ${{ secrets.OPENAEV_PR_CHECKS_PRIVATE_KEY }}
- name: "Validate PR title and create check"
uses: FiligranHQ/filigran-ci-tools/actions/pr-title-check@main
with:
token: ${{ steps.generate-token.outputs.token }}
52 changes: 16 additions & 36 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,20 @@
"extends": [
"config:recommended"
],
"baseBranchPatterns": [
"release/current",
"main"
"labels": [
"dependencies",
"filigran team"
],
"packageRules": [
{
"matchBaseBranches": [
"release/current"
],
"commitMessageSuffix": null
},
{
"matchJsonata": [
"$exists(isVulnerabilityAlert)"
],
"matchBaseBranches": [
"release/current"
],
"enabled": false
},
{
"matchJsonata": [
"$not($exists(isVulnerabilityAlert))"
],
"matchBaseBranches": [
"main"
],
"enabled": false
},
{
"matchPackageNames": [
"mid"
],
"enabled": false
}
]
}
"minimumReleaseAge": "3 days",
"prHourlyLimit": 2,
"prConcurrentLimit": 20,
"timezone": "Europe/Paris",
"schedule": [
"* 0-4,22-23 * * 1-5",
"* * * * 0,6"
],
"updateNotScheduled": false,
"rebaseWhen": "conflicted",
"commitMessageAction": "update",
"commitMessagePrefix": "[agent] chore(deps):"
}
Loading