6d3a7470ce
This commit adds a `--dry-run` every time something new is commited. This should prevent issues with the actual execution by allowing CI testing.
21 lines
357 B
YAML
21 lines
357 B
YAML
image: docker.io/renovate/renovate:19
|
|
|
|
stages:
|
|
- CI
|
|
- Run
|
|
|
|
dry-run:
|
|
stage: CI
|
|
before_script:
|
|
- cp config.js /usr/src/app/config.js
|
|
script:
|
|
- node /usr/src/app/dist/renovate.js --dry-run
|
|
|
|
run:
|
|
stage: Run
|
|
before_script:
|
|
- cp config.js /usr/src/app/config.js
|
|
script:
|
|
- node /usr/src/app/dist/renovate.js
|
|
only:
|
|
- schedules
|