Skip to content

Commit

Permalink
presets: add disable-drone-yml
Browse files Browse the repository at this point in the history
  • Loading branch information
roobre committed Nov 27, 2024
1 parent f5c3536 commit dba28bd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions presets/disable-drone-yml.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
// This preset prevents renovate from touching .drone.yml. This is useful if the drone pipeline is signed, as in this
// case renovate changing this file will break the signature.
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"matchFileNames": [
".drone.y*ml",
],
"enabled": false,
},
],
}

0 comments on commit dba28bd

Please sign in to comment.