MirrorSyncCreate creates an action for mirror synchronization of a new reference.
(ctx context.Context, owner *User, repo *Repository, refName string)
| 256 | // MirrorSyncCreate creates an action for mirror synchronization of a new |
| 257 | // reference. |
| 258 | func (s *ActionsStore) MirrorSyncCreate(ctx context.Context, owner *User, repo *Repository, refName string) error { |
| 259 | return s.mirrorSyncAction(ctx, ActionMirrorSyncCreate, owner, repo, refName, nil) |
| 260 | } |
| 261 | |
| 262 | // MirrorSyncDelete creates an action for mirror synchronization of a reference |
| 263 | // deletion. |