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.
		
		
		
		
		
			
	
    
        
            
                
                    
                        |             | 12345678910111213 | msg=$1
ciskip="[CI SKIP]"
if [[ $msg =~ deploy ]]; then
  echo "此次提交将会部署,请查看drone日志。"
else
  echo "此次提交不部署"
  $msg="$msg$ciskip"
fi
git add .
git commit -a -m "$msg"
git push
 |