Make plan.yml general purpose (#125)
This commit is contained in:
parent
a09b4949fe
commit
57f7843ae1
2 changed files with 15 additions and 15 deletions
|
@ -7,19 +7,12 @@ checks:
|
||||||
repo: target
|
repo: target
|
||||||
actions:
|
actions:
|
||||||
- paths:
|
- paths:
|
||||||
- build
|
- build/pluginctl
|
||||||
|
- build/manifest
|
||||||
actions:
|
actions:
|
||||||
- type: overwrite_directory
|
- type: overwrite_directory
|
||||||
params:
|
params:
|
||||||
create: true
|
create: true
|
||||||
- paths:
|
|
||||||
- .editorconfig
|
|
||||||
actions:
|
|
||||||
- type: overwrite_file
|
|
||||||
params:
|
|
||||||
create: true
|
|
||||||
conditions:
|
|
||||||
- type: file_unaltered
|
|
||||||
- paths:
|
- paths:
|
||||||
- Makefile
|
- Makefile
|
||||||
actions:
|
actions:
|
||||||
|
@ -27,18 +20,25 @@ actions:
|
||||||
params:
|
params:
|
||||||
create: true
|
create: true
|
||||||
- paths:
|
- paths:
|
||||||
- .circleci/config.yml
|
- .editorconfig
|
||||||
- server/configuration.go
|
- .gitattributes
|
||||||
- server/plugin.go
|
- .gitignore
|
||||||
- server/plugin_test.go
|
- build/.gitignore
|
||||||
|
- build/go.mod
|
||||||
|
- build/go.sum
|
||||||
|
- build/setup.mk
|
||||||
|
- server/.gitignore
|
||||||
- webapp/.eslintrc.json
|
- webapp/.eslintrc.json
|
||||||
|
- webapp/.npmrc
|
||||||
- webapp/babel.config.js
|
- webapp/babel.config.js
|
||||||
- webapp/package.json
|
- webapp/package.json
|
||||||
- webapp/src/index.tsx
|
|
||||||
- webapp/tsconfig.json
|
- webapp/tsconfig.json
|
||||||
- webapp/webpack.config.js
|
- webapp/webpack.config.js
|
||||||
|
- webapp/src/manifest.test.tsx
|
||||||
|
- webapp/tests/setup.tsx
|
||||||
actions:
|
actions:
|
||||||
- type: overwrite_file
|
- type: overwrite_file
|
||||||
|
params:
|
||||||
|
create: true
|
||||||
conditions:
|
conditions:
|
||||||
- type: exists
|
|
||||||
- type: file_unaltered
|
- type: file_unaltered
|
||||||
|
|
Reference in a new issue