fix: Set directory and project name for dependabot
This commit is contained in:
parent
038e2896b3
commit
0860dcfe48
1 changed files with 41 additions and 3 deletions
|
@ -123,24 +123,62 @@ deploy_commit_image_to_tag:
|
||||||
before_script:
|
before_script:
|
||||||
- cd /home/dependabot/app
|
- cd /home/dependabot/app
|
||||||
script:
|
script:
|
||||||
- bundle exec rake "dependabot:update[$PROJECT_PATH,$PACKAGE_MANAGER,$DIRECTORY]"
|
- bundle exec rake "dependabot:update[$CI_PROJECT_PATH,$PACKAGE_MANAGER,$DIRECTORY]"
|
||||||
# only:
|
# only:
|
||||||
# - schedules
|
# - schedules
|
||||||
|
|
||||||
npm:
|
npm-release-tools:
|
||||||
<<: *dependabot_gitlab
|
<<: *dependabot_gitlab
|
||||||
|
variables:
|
||||||
|
DIRECTORY: "/"
|
||||||
# only:
|
# only:
|
||||||
# variables:
|
# variables:
|
||||||
# - $PACKAGE_MANAGER_SET =~ /(\bnpm|yarn\b)/
|
# - $PACKAGE_MANAGER_SET =~ /(\bnpm|yarn\b)/
|
||||||
|
|
||||||
mix:
|
npm-assets:
|
||||||
<<: *dependabot_gitlab
|
<<: *dependabot_gitlab
|
||||||
|
variables:
|
||||||
|
DIRECTORY: "/apps/app/assets"
|
||||||
|
# only:
|
||||||
|
# variables:
|
||||||
|
# - $PACKAGE_MANAGER_SET =~ /(\bnpm|yarn\b)/
|
||||||
|
|
||||||
|
mix-admin:
|
||||||
|
<<: *dependabot_gitlab
|
||||||
|
variables:
|
||||||
|
DIRECTORY: "/apps/admin"
|
||||||
|
# only:
|
||||||
|
# variables:
|
||||||
|
# - $PACKAGE_MANAGER_SET =~ /\bmix\b/
|
||||||
|
|
||||||
|
mix-app:
|
||||||
|
<<: *dependabot_gitlab
|
||||||
|
variables:
|
||||||
|
DIRECTORY: "/apps/app"
|
||||||
|
# only:
|
||||||
|
# variables:
|
||||||
|
# - $PACKAGE_MANAGER_SET =~ /\bmix\b/
|
||||||
|
|
||||||
|
mix-core:
|
||||||
|
<<: *dependabot_gitlab
|
||||||
|
variables:
|
||||||
|
DIRECTORY: "/apps/core"
|
||||||
|
# only:
|
||||||
|
# variables:
|
||||||
|
# - $PACKAGE_MANAGER_SET =~ /\bmix\b/
|
||||||
|
|
||||||
|
mix-content:
|
||||||
|
<<: *dependabot_gitlab
|
||||||
|
variables:
|
||||||
|
DIRECTORY: "/apps/content"
|
||||||
# only:
|
# only:
|
||||||
# variables:
|
# variables:
|
||||||
# - $PACKAGE_MANAGER_SET =~ /\bmix\b/
|
# - $PACKAGE_MANAGER_SET =~ /\bmix\b/
|
||||||
|
|
||||||
docker:
|
docker:
|
||||||
<<: *dependabot_gitlab
|
<<: *dependabot_gitlab
|
||||||
|
variables:
|
||||||
|
DIRECTORY: "/"
|
||||||
# only:
|
# only:
|
||||||
# variables:
|
# variables:
|
||||||
# - $PACKAGE_MANAGER_SET =~ /\bdocker\b/
|
# - $PACKAGE_MANAGER_SET =~ /\bdocker\b/
|
||||||
|
|
Loading…
Reference in a new issue