Compare commits
2 commits
92f2eb9d97
...
df313f2618
Author | SHA1 | Date | |
---|---|---|---|
df313f2618 | |||
a1956e0e23 |
1 changed files with 33 additions and 1 deletions
34
.github/.drone.yml
vendored
34
.github/.drone.yml
vendored
|
@ -62,4 +62,36 @@ steps:
|
||||||
condition:
|
condition:
|
||||||
- change_match:
|
- change_match:
|
||||||
path:
|
path:
|
||||||
- "^downloaders/.*\.yml$"
|
- "^downloaders/.*\.yml$"
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: Update Branches
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
branch:
|
||||||
|
- main
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Update arrs branch
|
||||||
|
image: plugins/git
|
||||||
|
settings:
|
||||||
|
branch: arrs
|
||||||
|
base: main
|
||||||
|
commit: ${DRONE_COMMIT_SHA}
|
||||||
|
paths:
|
||||||
|
- arrs/*
|
||||||
|
|
||||||
|
- name: Update downloaders branch
|
||||||
|
image: plugins/git
|
||||||
|
settings:
|
||||||
|
branch: downloaders
|
||||||
|
base: main
|
||||||
|
commit: ${DRONE_COMMIT_SHA}
|
||||||
|
paths:
|
||||||
|
- downloaders/*
|
Reference in a new issue