Skip to content
Merged
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
5 changes: 3 additions & 2 deletions .github/workflows/contributor-license-agreement.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ permissions:

jobs:
require-contributor-license-agreement:
name: "Require Contributor License Agreement"
runs-on: ubuntu-latest
steps:
- name: "Require Contributor License Agreement"
- name: "Contributor License Agreement"
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'
uses: contributor-assistant/[email protected]
env:
Expand All @@ -34,4 +35,4 @@ jobs:
path-to-document: 'https://github.com/Telefonica/cross-confluence-tools/blob/master/.github/CLA.md'
branch: 'cla-signatures'
# the below is the list of users who are allowed to sign the CLA without any check
# allowlist: user1,bot*
allowlist: renovate,renovate[bot]
1 change: 1 addition & 0 deletions components/cspell-config/dictionaries/tech.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
automerge
cacheable
frontmatter
nrwl
49 changes: 49 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"constraints": {
"pnpm": "9.4.0",
"node": "22.4.0"
},
"baseBranches": ["release"],
"automerge": true,
"platformAutomerge": true,
"automergeStrategy": "squash",
"major": {
"automerge": false
},
"minor": {
"automerge": true
},
"separateMultipleMajor": false,
"rangeStrategy": "pin",
"packageRules": [
{
"groupName": "all patch and minor dependencies",
"groupSlug": "all-patch-and-minor-dependencies",
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"patch",
"minor"
]
},
{
"matchDepTypes": ["peerDependencies", "engines"],
"rangeStrategy": "widen"
}
],
"labels": [
"dependencies",
"renovate"
],
"stabilityDays": 5,
"prHourlyLimit": 1,
"prConcurrentLimit": 2,
"timezone": "Europe/Madrid",
"schedule": ["after 5pm on every weekday"],
"masterIssue": true
}
Loading