We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d8e9e0 commit 26c642fCopy full SHA for 26c642f
.github/dependabot.yml
@@ -12,3 +12,8 @@ updates:
12
interval: "weekly"
13
labels:
14
- "dependencies"
15
+ ignore:
16
+ - dependency-name: "*"
17
+ update-types:
18
+ - "version-update:semver-major" # Ignore major updates
19
+
Makefile
@@ -3,6 +3,8 @@ DOCKER_TAG ?= latest
3
4
export DOCKER_BUILDKIT=1
5
6
+.DEFAULT_GOAL := help
7
8
.PHONY: build
9
build: ## Build docker image
10
docker build --tag=camptocamp/geoshop-api:$(VERSION) \
0 commit comments