[PR #5113] [CLOSED] Refactor action notification #17647

Closed
opened 2025-11-02 14:42:47 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/5113
Author: @lunny
Created: 10/19/2018
Status: Closed

Base: masterHead: lunny/notification_action


📝 Commits (10+)

📊 Changes

34 files changed (+1351 additions, -920 deletions)

View changed files

📝 models/action.go (+26 -176)
📝 models/action_test.go (+0 -215)
📝 models/issue.go (+0 -12)
📝 models/issue_comment.go (+2 -10)
📝 models/pull.go (+0 -16)
📝 models/release_test.go (+5 -56)
📝 models/repo.go (+24 -6)
📝 models/repo_branch.go (+0 -40)
models/repo_editor.go (+431 -0)
📝 models/repo_mirror.go (+4 -288)
📝 models/repo_test.go (+0 -6)
📝 models/update.go (+21 -20)
📝 modules/cron/cron.go (+3 -2)
modules/mirror/action.go (+67 -0)
modules/mirror/main_test.go (+16 -0)
modules/mirror/sync.go (+318 -0)
modules/mirror/sync_test.go (+69 -0)
modules/notification/action/action.go (+206 -0)
📝 modules/notification/base/notifier.go (+5 -0)
📝 modules/notification/base/null.go (+16 -0)

...and 14 more files

📄 Description

Extract from #4001


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-gitea/gitea/pull/5113 **Author:** [@lunny](https://github.com/lunny) **Created:** 10/19/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `lunny/notification_action` --- ### 📝 Commits (10+) - [`73e649e`](https://github.com/go-gitea/gitea/commit/73e649e0f500eb2eee82f42e6cd7819292c08415) refactor action notification - [`bc72f08`](https://github.com/go-gitea/gitea/commit/bc72f085be99d18074040b6c9aa4b6c30b605f74) fix tests - [`a8c6002`](https://github.com/go-gitea/gitea/commit/a8c60020841de28ae391f2103960594b8a0842e2) fix lint - [`541b4ea`](https://github.com/go-gitea/gitea/commit/541b4eae841a2be2682bbbeedaacb297ef53d700) fix lint - [`c4c0a6d`](https://github.com/go-gitea/gitea/commit/c4c0a6dfb0d14e48c1a102a408ec7a9b3c7212d1) fix tests - [`27d8cdc`](https://github.com/go-gitea/gitea/commit/27d8cdc871a44f40918e0ce1932ee860423ed35e) fix tests - [`95aa7dd`](https://github.com/go-gitea/gitea/commit/95aa7dda2a72bd0e204fe825ab85181e139c5d21) fix tests - [`05f3626`](https://github.com/go-gitea/gitea/commit/05f36260ab75b6c6bd468fc199fa790e1e8e362f) add tests - [`bd8b207`](https://github.com/go-gitea/gitea/commit/bd8b207a7c56487402bb65a94adbceb1996ed504) fix merge - [`e6ed8c3`](https://github.com/go-gitea/gitea/commit/e6ed8c394b774ad8522b65d8dc0ad42803dcd2a2) fix make vet ### 📊 Changes **34 files changed** (+1351 additions, -920 deletions) <details> <summary>View changed files</summary> 📝 `models/action.go` (+26 -176) 📝 `models/action_test.go` (+0 -215) 📝 `models/issue.go` (+0 -12) 📝 `models/issue_comment.go` (+2 -10) 📝 `models/pull.go` (+0 -16) 📝 `models/release_test.go` (+5 -56) 📝 `models/repo.go` (+24 -6) 📝 `models/repo_branch.go` (+0 -40) ➕ `models/repo_editor.go` (+431 -0) 📝 `models/repo_mirror.go` (+4 -288) 📝 `models/repo_test.go` (+0 -6) 📝 `models/update.go` (+21 -20) 📝 `modules/cron/cron.go` (+3 -2) ➕ `modules/mirror/action.go` (+67 -0) ➕ `modules/mirror/main_test.go` (+16 -0) ➕ `modules/mirror/sync.go` (+318 -0) ➕ `modules/mirror/sync_test.go` (+69 -0) ➕ `modules/notification/action/action.go` (+206 -0) 📝 `modules/notification/base/notifier.go` (+5 -0) 📝 `modules/notification/base/null.go` (+16 -0) _...and 14 more files_ </details> ### 📄 Description Extract from #4001 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-02 14:42:47 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#17647