-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into sergeyd-user-dont-want-exhibit-selfs
- Loading branch information
Showing
78 changed files
with
1,568 additions
and
378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
date: "2021-05-14T00:00:00-00:00" | ||
title: "Protected tags" | ||
slug: "protected-tags" | ||
weight: 45 | ||
toc: false | ||
draft: false | ||
menu: | ||
sidebar: | ||
parent: "advanced" | ||
name: "Protected tags" | ||
weight: 45 | ||
identifier: "protected-tags" | ||
--- | ||
|
||
# Protected tags | ||
|
||
Protected tags allow control over who has permission to create or update git tags. Each rule allows you to match either an individual tag name, or use an appropriate pattern to control multiple tags at once. | ||
|
||
**Table of Contents** | ||
|
||
{{< toc >}} | ||
|
||
## Setting up protected tags | ||
|
||
To protect a tag, you need to follow these steps: | ||
|
||
1. Go to the repository’s **Settings** > **Tags** page. | ||
1. Type a pattern to match a name. You can use a single name, a [glob pattern](https://pkg.go.dev/github.com/gobwas/glob#Compile) or a regular expression. | ||
1. Choose the allowed users and/or teams. If you leave these fields empty noone is allowed to create or modify this tag. | ||
1. Select **Save** to save the configuration. | ||
|
||
## Pattern protected tags | ||
|
||
The pattern uses [glob](https://pkg.go.dev/github.com/gobwas/glob#Compile) or regular expressions to match a tag name. For regular expressions you need to enclose the pattern in slashes. | ||
|
||
Examples: | ||
|
||
| Type | Pattern Protected Tag | Possible Matching Tags | | ||
| ----- | ------------------------ | --------------------------------------- | | ||
| Glob | `v*` | `v`, `v-1`, `version2` | | ||
| Glob | `v[0-9]` | `v0`, `v1` up to `v9` | | ||
| Glob | `*-release` | `2.1-release`, `final-release` | | ||
| Glob | `gitea` | only `gitea` | | ||
| Glob | `*gitea*` | `gitea`, `2.1-gitea`, `1_gitea-release` | | ||
| Glob | `{v,rel}-*` | `v-`, `v-1`, `v-final`, `rel-`, `rel-x` | | ||
| Glob | `*` | matches all possible tag names | | ||
| Regex | `/\Av/` | `v`, `v-1`, `version2` | | ||
| Regex | `/\Av[0-9]\z/` | `v0`, `v1` up to `v9` | | ||
| Regex | `/\Av\d+\.\d+\.\d+\z/` | `v1.0.17`, `v2.1.0` | | ||
| Regex | `/\Av\d+(\.\d+){0,2}\z/` | `v1`, `v2.1`, `v1.2.34` | | ||
| Regex | `/-release\z/` | `2.1-release`, `final-release` | | ||
| Regex | `/gitea/` | `gitea`, `2.1-gitea`, `1_gitea-release` | | ||
| Regex | `/\Agitea\z/` | only `gitea` | | ||
| Regex | `/^gitea$/` | only `gitea` | | ||
| Regex | `/\A(v\|rel)-/` | `v-`, `v-1`, `v-final`, `rel-`, `rel-x` | | ||
| Regex | `/.+/` | matches all possible tag names | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
// 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. | ||
|
||
package integrations | ||
|
||
import ( | ||
"io/ioutil" | ||
"net/url" | ||
"testing" | ||
|
||
"code.gitea.io/gitea/models" | ||
"code.gitea.io/gitea/modules/git" | ||
"code.gitea.io/gitea/modules/util" | ||
"code.gitea.io/gitea/services/release" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestCreateNewTagProtected(t *testing.T) { | ||
defer prepareTestEnv(t)() | ||
|
||
repo := models.AssertExistsAndLoadBean(t, &models.Repository{ID: 1}).(*models.Repository) | ||
owner := models.AssertExistsAndLoadBean(t, &models.User{ID: repo.OwnerID}).(*models.User) | ||
|
||
t.Run("API", func(t *testing.T) { | ||
defer PrintCurrentTest(t)() | ||
|
||
err := release.CreateNewTag(owner, repo, "master", "v-1", "first tag") | ||
assert.NoError(t, err) | ||
|
||
err = models.InsertProtectedTag(&models.ProtectedTag{ | ||
RepoID: repo.ID, | ||
NamePattern: "v-*", | ||
}) | ||
assert.NoError(t, err) | ||
err = models.InsertProtectedTag(&models.ProtectedTag{ | ||
RepoID: repo.ID, | ||
NamePattern: "v-1.1", | ||
AllowlistUserIDs: []int64{repo.OwnerID}, | ||
}) | ||
assert.NoError(t, err) | ||
|
||
err = release.CreateNewTag(owner, repo, "master", "v-2", "second tag") | ||
assert.Error(t, err) | ||
assert.True(t, models.IsErrProtectedTagName(err)) | ||
|
||
err = release.CreateNewTag(owner, repo, "master", "v-1.1", "third tag") | ||
assert.NoError(t, err) | ||
}) | ||
|
||
t.Run("Git", func(t *testing.T) { | ||
onGiteaRun(t, func(t *testing.T, u *url.URL) { | ||
username := "user2" | ||
httpContext := NewAPITestContext(t, username, "repo1") | ||
|
||
dstPath, err := ioutil.TempDir("", httpContext.Reponame) | ||
assert.NoError(t, err) | ||
defer util.RemoveAll(dstPath) | ||
|
||
u.Path = httpContext.GitPath() | ||
u.User = url.UserPassword(username, userPassword) | ||
|
||
doGitClone(dstPath, u)(t) | ||
|
||
_, err = git.NewCommand("tag", "v-2").RunInDir(dstPath) | ||
assert.NoError(t, err) | ||
|
||
_, err = git.NewCommand("push", "--tags").RunInDir(dstPath) | ||
assert.Error(t, err) | ||
assert.Contains(t, err.Error(), "Tag v-2 is protected") | ||
}) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.