| 1234567891011121314 |
- #!/usr/bin/env groovy
- def call(String secret = '') {
- def notifier = new org.feishu.FeishuNotifier()
- def msg = """**开始构建**
- 项目:${env.JOB_NAME}
- 构建编号:#${env.BUILD_NUMBER}
- 启动人:${currentBuild.getBuildCauses()[0].userId}"""
- notifier.send(
- webhook: env.FEISHU_WEBHOOK,
- secret : secret,
- title : "🔔 Jenkins 构建开始",
- text : msg
- )
- }
|