1# These settings are synced to GitHub by https://probot.github.io/apps/settings/ 2 3repository: 4 description: A full featured, fast Command Line Argument Parser for Rust 5 homepage: docs.rs/clap 6 topics: rust cli command-line argparse clap 7 has_issues: true 8 has_projects: false 9 has_wiki: false 10 has_downloads: true 11 default_branch: master 12 13 # Preference: people do clean commits 14 allow_merge_commit: true 15 # Backup in case we need to clean up commits 16 allow_squash_merge: true 17 # Not really needed 18 allow_rebase_merge: false 19 20 # Manual: allow_auto_merge: true, see https://github.com/probot/settings/issues/402 21 delete_branch_on_merge: true 22 23#labels: 24# - name: "A-builder" 25# description: "Area: Builder API" 26# color: '#f7e101' 27# - name: "A-derive" 28# description: "Area: #[derive]` macro API" 29# color: '#f7e101' 30# - name: "A-docs" 31# description: "Area: documentation, including docs.rs, readme, examples, etc..." 32# color: '#f7e101' 33# - name: "A-completion" 34# description: "Area: completion generator" 35# color: '#f7e101' 36# - name: "A-help" 37# description: "Area: Help or usage messages" 38# color: '#f7e101' 39# - name: "A-meta" 40# description: "Area: administrative question or tracking issue" 41# color: '#f7e101' 42# - name: "A-parsing" 43# description: "Area: Parser's logic and needs it changed somehow." 44# color: '#f7e101' 45# - name: "A-validators" 46# description: "Area: ArgMatches validation logic 47# color: '#f7e101' 48# - name: "C-bug" 49# description: "Category: Things not working as expected" 50# color: '#f5f1fd' 51# - name: "C-enhancement" 52# description: "Category: Raise on the bar on expectations" 53# color: '#f5f1fd' 54# - name: "C-tracking-issue" 55# description: "Category: A tracking issue for an unstable feature" 56# color: '#f5f1fd' 57# - name: "C-dependencies" 58# description: "Category: Updating dependencies" 59# color: '#f5f1fd' 60# - name: "E-easy" 61# description: "Call for participation: Experience needed to fix: Easy / not much" 62# color: '#02E10C' 63# - name: "E-medium" 64# description: "Call for participation: Experience needed to fix: Medium / intermediate" 65# color: '#02E10C' 66# - name: "E-hard" 67# description: "Call for participation: Experience needed to fix: Hard / a lot" 68# color: '#02E10C' 69# - name: "E-help-wanted" 70# description: "Call for participation: Help is requested to fix this issue." 71# color: '#02E10C' 72# - name: "S-triage" 73# description: "Status: New; needs maintainer attention." 74# color: '#D3DDDD' 75# - name: "S-blocked" 76# description: "Status: Blocked on something else such as an RFC or other implementation work." 77# color: '#D3DDDD' 78# - name: "S-experimental" 79# description: "Status: Ongoing experiment that does not require reviewing and won't be merged in its current state." 80# color: '#D3DDDD' 81# - name: "S-waiting-on-design" 82# description: "Status: Waiting on user-facing design to be resolved before implementing" 83# color: '#D3DDDD' 84# - name: "S-waiting-on-decision" 85# description: "Status: Waiting on a go/no-go before implementing" 86# color: '#D3DDDD' 87# - name: "S-waiting-on-mentor" 88# description: "Status: Needs elaboration on the details before doing a 'Call for participation'" 89# color: '#D3DDDD' 90# - name: "S-waiting-on-author" 91# description: "Status: This is awaiting some action (such as code changes or more information) from the author." 92# color: '#D3DDDD' 93# - name: "M-breaking-change" 94# description: "Meta: Implementing or merging this will introduce a breaking change." 95# color: '#E10C02' 96# - name: "M-unreviewed" 97# description: "Meta: Request for post-merge review." 98# color: '#E10C02' 99 100branches: 101 - name: master 102 protection: 103 required_pull_request_reviews: null 104 required_conversation_resolution: true 105 required_status_checks: 106 # Required. Require branches to be up to date before merging. 107 strict: false 108 contexts: ["CI", "Lint Commits", "Spell Check with Typos"] 109 enforce_admins: false 110 restrictions: null 111 - name: v2-master 112 protection: 113 required_pull_request_reviews: null 114 required_conversation_resolution: true 115 required_status_checks: 116 # Required. Require branches to be up to date before merging. 117 strict: false 118 contexts: ["CI", "Lint Commits", "Spell Check with Typos"] 119 enforce_admins: false 120 restrictions: null 121 - name: v3-master 122 protection: 123 required_pull_request_reviews: null 124 required_conversation_resolution: true 125 required_status_checks: 126 # Required. Require branches to be up to date before merging. 127 strict: false 128 contexts: ["CI", "Lint Commits", "Spell Check with Typos"] 129 enforce_admins: false 130 restrictions: null 131