summaryrefslogtreecommitdiffstats
path: root/services/webhook
diff options
context:
space:
mode:
Diffstat (limited to 'services/webhook')
-rw-r--r--services/webhook/deliver.go3
-rw-r--r--services/webhook/deliver_test.go3
-rw-r--r--services/webhook/dingtalk.go3
-rw-r--r--services/webhook/dingtalk_test.go3
-rw-r--r--services/webhook/discord.go3
-rw-r--r--services/webhook/discord_test.go3
-rw-r--r--services/webhook/feishu.go3
-rw-r--r--services/webhook/feishu_test.go3
-rw-r--r--services/webhook/general.go3
-rw-r--r--services/webhook/general_test.go3
-rw-r--r--services/webhook/main_test.go3
-rw-r--r--services/webhook/matrix.go3
-rw-r--r--services/webhook/matrix_test.go3
-rw-r--r--services/webhook/msteams.go3
-rw-r--r--services/webhook/msteams_test.go3
-rw-r--r--services/webhook/packagist.go3
-rw-r--r--services/webhook/packagist_test.go3
-rw-r--r--services/webhook/payloader.go3
-rw-r--r--services/webhook/slack.go3
-rw-r--r--services/webhook/slack_test.go3
-rw-r--r--services/webhook/telegram.go3
-rw-r--r--services/webhook/telegram_test.go3
-rw-r--r--services/webhook/webhook.go3
-rw-r--r--services/webhook/webhook_test.go3
-rw-r--r--services/webhook/wechatwork.go3
25 files changed, 25 insertions, 50 deletions
diff --git a/services/webhook/deliver.go b/services/webhook/deliver.go
index 07fdf18c83..eed711c580 100644
--- a/services/webhook/deliver.go
+++ b/services/webhook/deliver.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/deliver_test.go b/services/webhook/deliver_test.go
index 498cf7d159..e7a042f4d2 100644
--- a/services/webhook/deliver_test.go
+++ b/services/webhook/deliver_test.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/dingtalk.go b/services/webhook/dingtalk.go
index e047e994c2..7cb1fb75fc 100644
--- a/services/webhook/dingtalk.go
+++ b/services/webhook/dingtalk.go
@@ -1,6 +1,5 @@
// Copyright 2017 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/dingtalk_test.go b/services/webhook/dingtalk_test.go
index fc15380f4d..89b5f9d219 100644
--- a/services/webhook/dingtalk_test.go
+++ b/services/webhook/dingtalk_test.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/discord.go b/services/webhook/discord.go
index 22d75db893..c9fdc95320 100644
--- a/services/webhook/discord.go
+++ b/services/webhook/discord.go
@@ -1,6 +1,5 @@
// Copyright 2017 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/discord_test.go b/services/webhook/discord_test.go
index 8e4e60a7ff..df3cdc15bd 100644
--- a/services/webhook/discord_test.go
+++ b/services/webhook/discord_test.go
@@ -1,6 +1,5 @@
// Copyright 2021 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/feishu.go b/services/webhook/feishu.go
index 782684d0ff..58b6fff331 100644
--- a/services/webhook/feishu.go
+++ b/services/webhook/feishu.go
@@ -1,6 +1,5 @@
// Copyright 2020 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/feishu_test.go b/services/webhook/feishu_test.go
index 85cfb759fe..df44fd1f72 100644
--- a/services/webhook/feishu_test.go
+++ b/services/webhook/feishu_test.go
@@ -1,6 +1,5 @@
// Copyright 2021 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/general.go b/services/webhook/general.go
index f6ef673923..bec752cffe 100644
--- a/services/webhook/general.go
+++ b/services/webhook/general.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/general_test.go b/services/webhook/general_test.go
index da3123d3ab..ba58ca4f90 100644
--- a/services/webhook/general_test.go
+++ b/services/webhook/general_test.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/main_test.go b/services/webhook/main_test.go
index 5ddb6cf1f3..6cf9410735 100644
--- a/services/webhook/main_test.go
+++ b/services/webhook/main_test.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/matrix.go b/services/webhook/matrix.go
index 7ff8b1e638..bd3efd46b2 100644
--- a/services/webhook/matrix.go
+++ b/services/webhook/matrix.go
@@ -1,6 +1,5 @@
// Copyright 2020 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/matrix_test.go b/services/webhook/matrix_test.go
index bbcdef3567..754234eccf 100644
--- a/services/webhook/matrix_test.go
+++ b/services/webhook/matrix_test.go
@@ -1,6 +1,5 @@
// Copyright 2020 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/msteams.go b/services/webhook/msteams.go
index bf9e95edc5..ef8366f8d5 100644
--- a/services/webhook/msteams.go
+++ b/services/webhook/msteams.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/msteams_test.go b/services/webhook/msteams_test.go
index 8292beed7f..8daf99f867 100644
--- a/services/webhook/msteams_test.go
+++ b/services/webhook/msteams_test.go
@@ -1,6 +1,5 @@
// Copyright 2021 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/packagist.go b/services/webhook/packagist.go
index 5badc7462a..815e1a93e9 100644
--- a/services/webhook/packagist.go
+++ b/services/webhook/packagist.go
@@ -1,6 +1,5 @@
// Copyright 2022 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/packagist_test.go b/services/webhook/packagist_test.go
index 4a24b76523..4941ae3f01 100644
--- a/services/webhook/packagist_test.go
+++ b/services/webhook/packagist_test.go
@@ -1,6 +1,5 @@
// Copyright 2022 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/payloader.go b/services/webhook/payloader.go
index a9d01c9891..7b04f1dd36 100644
--- a/services/webhook/payloader.go
+++ b/services/webhook/payloader.go
@@ -1,6 +1,5 @@
// Copyright 2020 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/slack.go b/services/webhook/slack.go
index f5c69d74b6..1814361a1c 100644
--- a/services/webhook/slack.go
+++ b/services/webhook/slack.go
@@ -1,6 +1,5 @@
// Copyright 2014 The Gogs Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/slack_test.go b/services/webhook/slack_test.go
index 3af38b5158..db97b351c5 100644
--- a/services/webhook/slack_test.go
+++ b/services/webhook/slack_test.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/telegram.go b/services/webhook/telegram.go
index 7ca5f61062..8bc68490e5 100644
--- a/services/webhook/telegram.go
+++ b/services/webhook/telegram.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/telegram_test.go b/services/webhook/telegram_test.go
index 5ca78d0508..b092f7e732 100644
--- a/services/webhook/telegram_test.go
+++ b/services/webhook/telegram_test.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/webhook.go b/services/webhook/webhook.go
index 5c9139b41f..21173e7cd8 100644
--- a/services/webhook/webhook.go
+++ b/services/webhook/webhook.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/webhook_test.go b/services/webhook/webhook_test.go
index 8d44aa504a..a1f197d809 100644
--- a/services/webhook/webhook_test.go
+++ b/services/webhook/webhook_test.go
@@ -1,6 +1,5 @@
// Copyright 2019 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook
diff --git a/services/webhook/wechatwork.go b/services/webhook/wechatwork.go
index acaa12253b..a77d871dd7 100644
--- a/services/webhook/wechatwork.go
+++ b/services/webhook/wechatwork.go
@@ -1,6 +1,5 @@
// Copyright 2021 The Gitea Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
+// SPDX-License-Identifier: MIT
package webhook