fix triggers

This commit is contained in:
Patrick Schratz 2024-09-07 22:56:55 +02:00
commit 4bd6638b39
Signed by: pat-s
GPG key ID: 3C6318841EF78925
3 changed files with 15 additions and 15 deletions

View file

@ -45,7 +45,7 @@ steps:
memory: 800Mi memory: 800Mi
cpu: 1000m cpu: 1000m
nodeSelector: nodeSelector:
kubernetes.io/arch: "${ARCH}" kubernetes.io/arch: '${ARCH}'
- name: 'ntfy' - name: 'ntfy'
image: codeberg.org/l-x/woodpecker-ntfy:1.3.1 image: codeberg.org/l-x/woodpecker-ntfy:1.3.1

View file

@ -1,6 +1,5 @@
when: when:
- event: cron event: [manual]
cron: images
skip_clone: true skip_clone: true
@ -48,9 +47,9 @@ steps:
memory: 30Gi memory: 30Gi
cpu: 4000m cpu: 4000m
nodeSelector: nodeSelector:
kubernetes.io/arch: "${ARCH}" kubernetes.io/arch: '${ARCH}'
tolerations: tolerations:
- key: "CI" - key: 'CI'
operator: "Equal" operator: 'Equal'
value: "true" value: 'true'
effect: "NoSchedule" effect: 'NoSchedule'

View file

@ -1,5 +1,6 @@
when: when:
event: [manual] - event: cron
cron: images
skip_clone: true skip_clone: true
@ -17,7 +18,7 @@ matrix:
ARCH: arm64 ARCH: arm64
- PLATFORM: alpine-320 - PLATFORM: alpine-320
ARCH: amd64 ARCH: amd64
steps: steps:
- name: 'Warming up' - name: 'Warming up'
image: busybox:latest image: busybox:latest
@ -36,9 +37,9 @@ steps:
memory: 800Mi memory: 800Mi
cpu: 1000m cpu: 1000m
nodeSelector: nodeSelector:
kubernetes.io/arch: "${ARCH}" kubernetes.io/arch: '${ARCH}'
tolerations: tolerations:
- key: "CI" - key: 'CI'
operator: "Equal" operator: 'Equal'
value: "true" value: 'true'
effect: "NoSchedule" effect: 'NoSchedule'