Skip to content

Commit

Permalink
[Issue #2175] Ignore Postgres in Docker for renovate config (#2176)
Browse files Browse the repository at this point in the history
## Summary
Fixes #2175

### Time to review: __3 mins__

## Changes proposed
Adjusted the renovate config to not tell us to upgrade Postgres version
in our docker-compose file

Minor fix for something missed in the merge for the .gitignore -
otherwise that also gets included by Renovate / anyone who stands up
localstack

## Context for reviewers
See for example: #2023

## Additional information
I'm not certain how we can test Renovate, I need to see if I can make it
use this branch when running
  • Loading branch information
chouinar committed Sep 18, 2024
1 parent 22562ce commit dd39045
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,15 @@
"peerDependencies"
],
"enabled": false
},
{
"description": "Leave Postgres Docker version alone - we want it to match our AWS version",
"enabled": false,
"matchFileNames": [
"analytics/docker-compose.yml",
"api/docker-compose.yml"
],
"matchPackagePatterns": ["postgres"]
}
]
}
3 changes: 3 additions & 0 deletions api/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,6 @@ coverage.*

#e2e
/test-results/

# localstack
/volume

0 comments on commit dd39045

Please sign in to comment.