From 073850a2322252c207ad1525ace9a6d16a8890f2 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Fri, 9 Dec 2022 12:08:31 +0100 Subject: [PATCH] fix fileMatch regex (#35) #### :book: Summary - fix renovate rexex fileMatch for woodpecker files. #### :bookmark_tabs: Test Plan > :bulb: Select your test plan for the code changes. - [x] Tested via CI pipeline - [ ] Custom test - [ ] No test plan ##### Details / Justification #### :books: Additional Notes Co-authored-by: OCram85 Reviewed-on: https://gitea.ocram85.com/OCram85/Blog/pulls/35 --- .woodpecker/.testy.yml | 7 ------- renovate.json | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 .woodpecker/.testy.yml diff --git a/.woodpecker/.testy.yml b/.woodpecker/.testy.yml deleted file mode 100644 index 9330e70..0000000 --- a/.woodpecker/.testy.yml +++ /dev/null @@ -1,7 +0,0 @@ -pipeline: - buildy: - image: node:18.12.0-buster - commands: - - npm install - - npm run test - - npm run build diff --git a/renovate.json b/renovate.json index 1879641..1daf42d 100644 --- a/renovate.json +++ b/renovate.json @@ -13,6 +13,6 @@ }, "woodpecker": { "enabled": true, - "fileMatch": ["^.woodpecker\/.*\.yml$"] + "fileMatch": ["^.woodpecker\/.*.yml$"] } }