blob: 8049766e942184b8c79cb5a3b4c3d5cd80f6eef1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
version: 33
jobs:
- name: GitHub Push
steps:
- !PushRepository
name: Github push sync
remoteUrl: https://github.com/VnUgE/noscrypt.git
userName: VnUgE
passwordSecret: github-access-token
force: true
condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL
- !PushRepository
name: Codeberg push sync
remoteUrl: https://codeberg.org/VnUgE/noscrypt.git
userName: VnUgE
passwordSecret: codeberg-access-token
force: true
condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL
triggers:
- !TagCreateTrigger
projects: noscrypt
- !BranchUpdateTrigger
projects: noscrypt
retryCondition: never
maxRetries: 3
retryDelay: 30
timeout: 3600
- name: GitHub Pull
steps:
- !PullRepository
name: GitHub sync pull
remoteUrl: https://github.com/VnUgE/noscrypt.git
userName: VnUgE
passwordSecret: github-access-token
refs: refs/heads/* refs/tags/*
withLfs: false
force: false
condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL
triggers:
- !ScheduleTrigger
cronExpression: 0 15 10 ? * *
projects: noscrypt
retryCondition: never
maxRetries: 3
retryDelay: 30
timeout: 3600
|