diff --git a/.devops/helper.yml b/.devops/helper.yml new file mode 100644 index 0000000..c70ebcf --- /dev/null +++ b/.devops/helper.yml @@ -0,0 +1,29 @@ +version: 2 +name: helper +description: "" +global: + concurrent: 1 +workflow: + - ref: start + name: 开始 + task: start + - ref: shell_0 + name: shell + image: docker.jianmuhub.com/library/alpine:3.17.0 + script: + - echo'begin' + needs: + - start + - ref: code_check_0 + name: 代码检查 + task: xxq250/code_check@1.0.1 + input: + key: '"wangfengzhi"' + needs: + - shell_0 + - ref: end + name: 结束 + task: end + needs: + - code_check_0 +