Skip to content
Closed
Show file tree
Hide file tree
Changes from 14 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.

37 changes: 37 additions & 0 deletions .github/workflows/oaev_common_ci_checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: "[OAEV] Common CI checks"
Comment thread
guillaumejparis marked this conversation as resolved.
Outdated
on:
pull_request:
branches: [main, release/current]
types: [opened, edited, reopened, ready_for_review, synchronize]
pull_request_target: {}
permissions:
contents: read
pull-requests: write
jobs:
check-signed-commits:
runs-on: ubuntu-latest
if: github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'synchronize'
steps:
- name: Check signed commits in PR
uses: FiligranHQ/filigran-ci-tools/actions/check-signed-commit@main
auto-label:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'reopened')
steps:
- name: "Auto Label"
uses: FiligranHQ/filigran-ci-tools/actions/auto-label@main
validate-pr-title:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
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