Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

protected-tags.en-us.md 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ---
  2. date: "2021-05-14T00:00:00-00:00"
  3. title: "Protected tags"
  4. slug: "protected-tags"
  5. weight: 45
  6. toc: false
  7. draft: false
  8. menu:
  9. sidebar:
  10. parent: "advanced"
  11. name: "Protected tags"
  12. weight: 45
  13. identifier: "protected-tags"
  14. ---
  15. # Protected tags
  16. 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.
  17. **Table of Contents**
  18. {{< toc >}}
  19. ## Setting up protected tags
  20. To protect a tag, you need to follow these steps:
  21. 1. Go to the repository’s **Settings** > **Tags** page.
  22. 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.
  23. 1. Choose the allowed users and/or teams. If you leave these fields empty no one is allowed to create or modify this tag.
  24. 1. Select **Save** to save the configuration.
  25. ## Pattern protected tags
  26. 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.
  27. Examples:
  28. | Type | Pattern Protected Tag | Possible Matching Tags |
  29. | ----- | ------------------------ | --------------------------------------- |
  30. | Glob | `v*` | `v`, `v-1`, `version2` |
  31. | Glob | `v[0-9]` | `v0`, `v1` up to `v9` |
  32. | Glob | `*-release` | `2.1-release`, `final-release` |
  33. | Glob | `gitea` | only `gitea` |
  34. | Glob | `*gitea*` | `gitea`, `2.1-gitea`, `1_gitea-release` |
  35. | Glob | `{v,rel}-*` | `v-`, `v-1`, `v-final`, `rel-`, `rel-x` |
  36. | Glob | `*` | matches all possible tag names |
  37. | Regex | `/\Av/` | `v`, `v-1`, `version2` |
  38. | Regex | `/\Av[0-9]\z/` | `v0`, `v1` up to `v9` |
  39. | Regex | `/\Av\d+\.\d+\.\d+\z/` | `v1.0.17`, `v2.1.0` |
  40. | Regex | `/\Av\d+(\.\d+){0,2}\z/` | `v1`, `v2.1`, `v1.2.34` |
  41. | Regex | `/-release\z/` | `2.1-release`, `final-release` |
  42. | Regex | `/gitea/` | `gitea`, `2.1-gitea`, `1_gitea-release` |
  43. | Regex | `/\Agitea\z/` | only `gitea` |
  44. | Regex | `/^gitea$/` | only `gitea` |
  45. | Regex | `/\A(v\|rel)-/` | `v-`, `v-1`, `v-final`, `rel-`, `rel-x` |
  46. | Regex | `/.+/` | matches all possible tag names |