From b27a6a4d1f78e472f9104c1e21d87ba2ddc9437f Mon Sep 17 00:00:00 2001 From: chrboesch Date: Wed, 24 Sep 2025 23:18:49 +0200 Subject: [PATCH] Update .woodpecker/eowyn.yaml separate steps --- .woodpecker/eowyn.yaml | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/.woodpecker/eowyn.yaml b/.woodpecker/eowyn.yaml index 9b2a4b7..b84c3e8 100644 --- a/.woodpecker/eowyn.yaml +++ b/.woodpecker/eowyn.yaml @@ -1,12 +1,26 @@ steps: - - name: eowyn + - name: test-pr image: ziglings/ziglang:latest pull: true commands: - sh ./patches/eowyn.sh when: - event: [pull_request, push, cron] - ref: - - refs/pull/** - - refs/heads/main + event: [pull_request] + + - name: test-merge + image: ziglings/ziglang:latest + pull: true + commands: + - sh ./patches/eowyn.sh + when: + event: [push] + branch: [main] + + - name: nightly + image: ziglings/ziglang:latest + pull: true + commands: + - sh ./patches/eowyn.sh + when: + event: [cron] cron: daily* \ No newline at end of file