From 57f7843ae15acda81f8b7dfbdf502d675a34a4e8 Mon Sep 17 00:00:00 2001 From: Ben Schumacher Date: Fri, 9 Oct 2020 09:42:45 +0200 Subject: [PATCH] Make plan.yml general purpose (#125) --- build/sync/plan.yml | 30 +++++++++---------- .../{manifest.test.ts => manifest.test.tsx} | 0 2 files changed, 15 insertions(+), 15 deletions(-) rename webapp/src/{manifest.test.ts => manifest.test.tsx} (100%) diff --git a/build/sync/plan.yml b/build/sync/plan.yml index 8b175f7..c31bfb0 100644 --- a/build/sync/plan.yml +++ b/build/sync/plan.yml @@ -7,19 +7,12 @@ checks: repo: target actions: - paths: - - build + - build/pluginctl + - build/manifest actions: - type: overwrite_directory params: create: true - - paths: - - .editorconfig - actions: - - type: overwrite_file - params: - create: true - conditions: - - type: file_unaltered - paths: - Makefile actions: @@ -27,18 +20,25 @@ actions: params: create: true - paths: - - .circleci/config.yml - - server/configuration.go - - server/plugin.go - - server/plugin_test.go + - .editorconfig + - .gitattributes + - .gitignore + - build/.gitignore + - build/go.mod + - build/go.sum + - build/setup.mk + - server/.gitignore - webapp/.eslintrc.json + - webapp/.npmrc - webapp/babel.config.js - webapp/package.json - - webapp/src/index.tsx - webapp/tsconfig.json - webapp/webpack.config.js + - webapp/src/manifest.test.tsx + - webapp/tests/setup.tsx actions: - type: overwrite_file + params: + create: true conditions: - - type: exists - type: file_unaltered diff --git a/webapp/src/manifest.test.ts b/webapp/src/manifest.test.tsx similarity index 100% rename from webapp/src/manifest.test.ts rename to webapp/src/manifest.test.tsx