Skip to content

Commit 61a82b4

Browse files
authored
Merge pull request #13 from ft-circleci-orbs/test-github-app-example-settings
Change team name
2 parents a389a76 + 02dca41 commit 61a82b4

File tree

2 files changed

+36
-177
lines changed

2 files changed

+36
-177
lines changed

.github/settings.yml

Lines changed: 36 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,87 +1,88 @@
11
# These settings are synced to GitHub by https://probot.github.io/apps/settings/
2+
# Once installed, the app is accessible to all repositories within a GitHub Organization, but must be re-installed for new Organizations.
23

34
repository:
45
# See https://docs.github.com/en/rest/reference/repos#update-a-repository for all available settings.
56

67
# The name of the repository. Changing this will rename the repository
7-
name: cloudsmith-circleci-orb
8+
# name: repo-name
89

910
# A short description of the repository that will show up on GitHub
10-
description: A CircleCI orb to assist with downloading from and publishing packages to Cloudsmith.
11+
# description: description of repo
1112

1213
# A URL with more information about the repository
13-
homepage: https://example.github.io/
14+
# homepage: https://example.github.io/
1415

1516
# A comma-separated list of topics to set on the repository
16-
topics: github, probot
17+
topics: code-management
1718

1819
# Either `true` to make the repository private, or `false` to make it public.
19-
private: true
20+
# private: false
2021

2122
# Either `true` to enable issues for this repository, `false` to disable them.
22-
has_issues: true
23+
# has_issues: true
2324

2425
# Either `true` to enable projects for this repository, or `false` to disable them.
2526
# If projects are disabled for the organization, passing `true` will cause an API error.
2627
has_projects: true
2728

2829
# Either `true` to enable the wiki for this repository, `false` to disable it.
29-
has_wiki: true
30+
# has_wiki: true
3031

3132
# Either `true` to enable downloads for this repository, `false` to disable them.
32-
has_downloads: true
33+
# has_downloads: true
3334

3435
# Updates the default branch for this repository.
3536
default_branch: main
3637

3738
# Either `true` to allow squash-merging pull requests, or `false` to prevent
3839
# squash-merging.
39-
allow_squash_merge: true
40+
# allow_squash_merge: true
4041

4142
# Either `true` to allow merging pull requests with a merge commit, or `false`
4243
# to prevent merging pull requests with merge commits.
43-
allow_merge_commit: true
44+
# allow_merge_commit: true
4445

4546
# Either `true` to allow rebase-merging pull requests, or `false` to prevent
4647
# rebase-merging.
47-
allow_rebase_merge: true
48+
# allow_rebase_merge: true
4849

4950
# Either `true` to enable automatic deletion of branches on merge, or `false` to disable
5051
delete_branch_on_merge: true
5152

5253
# Either `true` to enable automated security fixes, or `false` to disable
5354
# automated security fixes.
54-
enable_automated_security_fixes: true
55+
# enable_automated_security_fixes: true
5556

5657
# Either `true` to enable vulnerability alerts, or `false` to disable
5758
# vulnerability alerts.
58-
enable_vulnerability_alerts: true
59+
# enable_vulnerability_alerts: true
5960

6061
# Labels: define labels for Issues and Pull Requests
61-
labels:
62-
- name: bug
63-
color: CC0000
64-
description: An issue with the system 🐛.
62+
# labels:
63+
# - name: bug
64+
# color: CC0000
65+
# description: An issue with the system 🐛.
6566

66-
- name: feature
67-
# If including a `#`, make sure to wrap it with quotes!
68-
color: '#336699'
69-
description: New functionality.
67+
# - name: feature
68+
# # If including a `#`, make sure to wrap it with quotes!
69+
# color: '#336699'
70+
# description: New functionality.
7071

71-
- name: Help Wanted
72-
# Provide a new name to rename an existing label
73-
new_name: first-timers-only
72+
# - name: Help Wanted
73+
# # Provide a new name to rename an existing label
74+
# new_name: first-timers-only
7475

7576
# Milestones: define milestones for Issues and Pull Requests
76-
milestones:
77-
- title: milestone-title
78-
description: milestone-description
79-
# The state of the milestone. Either `open` or `closed`
80-
state: open
77+
# milestones:
78+
# - title: milestone-title
79+
# description: milestone-description
80+
# # The state of the milestone. Either `open` or `closed`
81+
# state: open
8182

8283
# Collaborators: give specific users access to this repository.
8384
# See https://docs.github.com/en/rest/reference/repos#add-a-repository-collaborator for available options
84-
collaborators:
85+
# collaborators:
8586
# - username: bkeepers
8687
# permission: push
8788
# - username: hubot
@@ -97,16 +98,16 @@ collaborators:
9798

9899
# See https://docs.github.com/en/rest/reference/teams#add-or-update-team-repository-permissions for available options
99100
teams:
100-
- name: core
101+
- name: code-management
101102
# The permission to grant the team. Can be one of:
102103
# * `pull` - can pull, but not push to or administer this repository.
103104
# * `push` - can pull and push, but not administer this repository.
104105
# * `admin` - can pull, push and administer this repository.
105106
# * `maintain` - Recommended for project managers who need to manage the repository without access to sensitive or destructive actions.
106107
# * `triage` - Recommended for contributors who need to proactively manage issues and pull requests without write access.
107108
permission: admin
108-
- name: docs
109-
permission: push
109+
# - name: docs
110+
# permission: push
110111

111112
branches:
112113
- name: main
@@ -118,7 +119,7 @@ branches:
118119
# The number of approvals required. (1-6)
119120
required_approving_review_count: 1
120121
# Dismiss approved reviews automatically when a new commit is pushed.
121-
dismiss_stale_reviews: true
122+
dismiss_stale_reviews: false
122123
# Blocks merge until code owners have reviewed.
123124
require_code_owner_reviews: true
124125
# Specify which users and teams can dismiss pull request reviews. Pass an empty dismissal_restrictions object to disable. User and team dismissal_restrictions are only available for organization-owned repositories. Omit this parameter for personal repositories.
@@ -139,4 +140,4 @@ branches:
139140
restrictions:
140141
apps: []
141142
users: []
142-
teams: []
143+
teams: []

.github/settings_copy.yml

Lines changed: 0 additions & 142 deletions
This file was deleted.

0 commit comments

Comments
 (0)