You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea/modules/structs
Henry Goodman 12cb1d2998
Allow force push to protected branches (#28086)
Fixes #22722 

### Problem
Currently, it is not possible to force push to a branch with branch
protection rules in place. There are often times where this is necessary
(CI workflows/administrative tasks etc).

The current workaround is to rename/remove the branch protection,
perform the force push, and then reinstate the protections.

### Solution
Provide an additional section in the branch protection rules to allow
users to specify which users with push access can also force push to the
branch. The default value of the rule will be set to `Disabled`, and the
UI is intuitive and very similar to the `Push` section.

It is worth noting in this implementation that allowing force push does
not override regular push access, and both will need to be enabled for a
user to force push.

This applies to manual force push to a remote, and also in Gitea UI
updating a PR by rebase (which requires force push)

This modifies the `BranchProtection` API structs to add:
- `enable_force_push bool`
- `enable_force_push_whitelist bool`
- `force_push_whitelist_usernames string[]`
- `force_push_whitelist_teams string[]`
- `force_push_whitelist_deploy_keys bool`

### Updated Branch Protection UI:

<img width="943" alt="image"
src="https://github.com/go-gitea/gitea/assets/79623665/7491899c-d816-45d5-be84-8512abd156bf">

### Pull Request `Update branch by Rebase` option enabled with source
branch `test` being a protected branch:


![image](https://github.com/go-gitea/gitea/assets/79623665/e018e6e9-b7b2-4bd3-808e-4947d7da35cc)
<img width="1038" alt="image"
src="https://github.com/go-gitea/gitea/assets/79623665/57ead13e-9006-459f-b83c-7079e6f4c654">

---------

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
8 months ago
..
activity.go Document possible action types for the user activity feed API (#31196) 9 months ago
activitypub.go
admin_user.go chore(api): support ignore password if login source type is LDAP for creating user API (#28491) 1 year ago
attachment.go
commit_status.go Restore warning commit status (#27504) 1 year ago
commit_status_test.go refactor improve NoBetterThan (#26126) 2 years ago
cron.go
doc.go
fork.go
git_blob.go
git_hook.go
hook.go Add `branch_filter` to hooks API endpoints (#26599) 2 years ago
issue.go Make gitea webhooks openproject compatible (#28435) 10 months ago
issue_comment.go
issue_label.go Support using label names when changing issue labels (#30943) 10 months ago
issue_milestone.go
issue_reaction.go
issue_stopwatch.go
issue_test.go
issue_tracked_time.go
lfs_lock.go
mirror.go Fix push mirror, wrong timestamp format (#27153) 1 year ago
miscellaneous.go Fix missing images in editor preview due to wrong links (#31299) 9 months ago
nodeinfo.go
notifications.go
org.go Allow Organisations to have a E-Mail (#25082) 2 years ago
org_member.go
org_team.go Increase max length of org team names from 30 to 255 characters (#31410) 9 months ago
package.go Fix package webhook (#27839) 1 year ago
pull.go Make gitea webhooks openproject compatible (#28435) 10 months ago
pull_review.go
release.go add Upload URL to release API (#26663) 2 years ago
repo.go Add topics for repository API (#31127) 10 months ago
repo_actions.go Add API endpoints for getting action jobs status (#26673) 11 months ago
repo_branch.go Allow force push to protected branches (#28086) 8 months ago
repo_collaborator.go
repo_commit.go Add file status for API "Get a single commit from a repository" (#16205) (#25831) 2 years ago
repo_compare.go feat(api): implement branch/commit comparison API (#30349) 11 months ago
repo_file.go
repo_key.go
repo_note.go
repo_refs.go
repo_tag.go Add tag protection via rest api #17862 (#31295) 9 months ago
repo_topic.go
repo_tree.go
repo_watch.go
repo_wiki.go
secret.go refactor(API): refactor secret creation and update functionality (#26751) 2 years ago
settings.go
status.go
task.go
user.go Make gitea webhooks openproject compatible (#28435) 10 months ago
user_app.go
user_email.go
user_gpgkey.go
user_key.go
variable.go Add API for `Variables` (#29520) 12 months ago
visible_type.go