| 1234567891011121314 |
- def call(String webhook, String status) {
- def info = gatherInfo()
- new com.example.FeishuNotifier(this, webhook).send(
- status,
- env.JOB_NAME,
- env.BUILD_NUMBER,
- info.buildUrl,
- info.duration,
- info.branch,
- info.commitMsg,
- info.author,
- info.commitTime
- )
- }
|