|
| 1 | +repository: |
| 2 | + private: false |
| 3 | + has_issues: true |
| 4 | + has_wiki: false |
| 5 | + has_downloads: true |
| 6 | + default_branch: master |
| 7 | + allow_squash_merge: false |
| 8 | + allow_merge_commit: true |
| 9 | + allow_rebase_merge: false |
| 10 | + |
| 11 | +# Labels: define labels for Issues and Pull Requests |
| 12 | +labels: |
| 13 | + - name: "Deprecations 👋" |
| 14 | + color: ff7700 |
| 15 | + - name: "Dependabot 🤖" |
| 16 | + color: 0366d6 |
| 17 | + - name: "Dependencies 📦" |
| 18 | + color: 0025ff |
| 19 | + description: "Pull requests that update a dependency file" |
| 20 | + - name: "Image 🖼" |
| 21 | + color: 00ffff |
| 22 | + - name: "HTML 👷♀️" |
| 23 | + color: ffffff |
| 24 | + - name: "CSS 👩🎨" |
| 25 | + color: b3b3b3 |
| 26 | + - name: "JavaScript 🦏" |
| 27 | + color: ffff00 |
| 28 | + - name: "Go 🐹" |
| 29 | + color: 00ADD8 |
| 30 | + - name: "JSON 👨💼" |
| 31 | + color: 00ADD8 |
| 32 | + - name: "NEON 🦹♂️" |
| 33 | + color: CE3262 |
| 34 | + - name: "MarkDown 📝" |
| 35 | + color: 000000 |
| 36 | + - name: "YAML 🍄" |
| 37 | + color: ff1aff |
| 38 | + - name: "Templates 🌲" |
| 39 | + color: 009933 |
| 40 | + - name: "Helm ☸" |
| 41 | + color: 091C84 |
| 42 | + - name: "Tests 🧪" |
| 43 | + color: ffe6e6 |
| 44 | + - name: "Source 🔮" |
| 45 | + color: e6ffe6 |
| 46 | + - name: "Configuration ⚙" |
| 47 | + color: b3b3cc |
| 48 | + - name: "PHP 🐘" |
| 49 | + color: 8892BF |
| 50 | + description: "Hypertext Pre Processor" |
| 51 | + - name: "Docker 🐳" |
| 52 | + color: 0db7ed |
| 53 | + description: "Pull requests that relate to Docker" |
| 54 | + - name: "CI 🚧" |
| 55 | + color: ffff00 |
| 56 | + - name: "Feature 🏗" |
| 57 | + color: 66ff99 |
| 58 | + - name: "Documentation 📚" |
| 59 | + color: 6666ff |
| 60 | + - name: "Security 🕵️♀️" |
| 61 | + color: ff0000 |
| 62 | + - name: "Hacktoberfest 🎃" |
| 63 | + color: 152347 |
| 64 | + - name: "Bug 🐞" |
| 65 | + color: d73a4a |
| 66 | + description: "Something isn't working" |
| 67 | + oldname: bug |
| 68 | + - name: "Duplicate ♊" |
| 69 | + color: cfd3d7 |
| 70 | + description: "This issue or pull request already exists" |
| 71 | + oldname: duplicate |
| 72 | + - name: "Enhancement ✨" |
| 73 | + color: a2eeef |
| 74 | + description: "New feature or request" |
| 75 | + oldname: enhancement |
| 76 | + - name: "Good First Issue" |
| 77 | + color: 7057ff |
| 78 | + description: "Good for newcomers" |
| 79 | + oldname: "good first issue" |
| 80 | + - name: "Help Wanted" |
| 81 | + color: 008672 |
| 82 | + description: "Extra attention is needed" |
| 83 | + oldname: "help wanted" |
| 84 | + - name: Invalid |
| 85 | + color: e4e669 |
| 86 | + description: "This doesn't seem right" |
| 87 | + oldname: invalid |
| 88 | + - name: "Question ❓" |
| 89 | + color: d876e3 |
| 90 | + description: "Further information is requested" |
| 91 | + oldname: question |
| 92 | + - name: "Will not be fixed 🛑" |
| 93 | + color: ffffff |
| 94 | + description: "This will not be worked on" |
| 95 | + oldname: wontfix |
| 96 | + - name: "Sponsor Request ❤️" |
| 97 | + color: fedbf0 |
| 98 | + description: "Issue/PR opened by sponsor" |
| 99 | + |
| 100 | +branches: |
| 101 | + - name: master |
| 102 | + protection: |
| 103 | + required_pull_request_reviews: |
| 104 | + required_approving_review_count: 1 |
| 105 | + dismiss_stale_reviews: true |
| 106 | + require_code_owner_reviews: true |
| 107 | + # Required. Require status checks to pass before merging. Set to null to disable |
| 108 | + required_status_checks: |
| 109 | + # Required. Require branches to be up to date before merging. |
| 110 | + strict: true |
| 111 | + # Required. The list of status checks to require in order to merge into this branch |
| 112 | + contexts: [ |
| 113 | + "Milestone Check", |
| 114 | + "✔️" |
| 115 | + ] |
| 116 | + # Required. Enforce all configured restrictions for administrators. Set to true to enforce required status checks for repository administrators. Set to null to disable. |
| 117 | + enforce_admins: true |
| 118 | + # Required. Restrict who can push to this branch. Team and user restrictions are only available for organization-owned repositories. Set to null to disable. |
| 119 | + restrictions: |
| 120 | + apps: [] |
| 121 | + users: [] |
| 122 | + teams: [] |
0 commit comments