You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

p 220B

12345678910111213
  1. msg=$1
  2. ciskip="[CI SKIP]"
  3. if [[ $msg =~ deploy ]]; then
  4. echo "此次提交将会部署,请查看drone日志。"
  5. else
  6. echo "此次提交不部署"
  7. $msg="$msg$ciskip"
  8. fi
  9. git add .
  10. git commit -a -m "$msg"
  11. git push