Skip to content

Commit 7e0762d

Browse files
chore: initial commit
0 parents  commit 7e0762d

258 files changed

Lines changed: 39290 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
root = true
2+
3+
[*]
4+
insert_final_newline = true
5+
charset = utf-8
6+
trim_trailing_whitespace = true
7+
indent_style = space
8+
indent_size = 4
9+
10+
[{Makefile,go.mod,go.sum,*.go,.gitmodules}]
11+
indent_style = tab
12+
indent_size = 4
13+
14+
[*.md]
15+
indent_size = 4
16+
trim_trailing_whitespace = false
17+
18+
eclint_indent_style = unset
19+
20+
[Dockerfile]
21+
indent_size = 4
22+
23+
[{*.yml,*.yaml}]
24+
indent_size = 2
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Bug report
3+
about: Create a bug to help us improve
4+
title: "[BUG] "
5+
type: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**Tested with Provider Version**
14+
v1.x.x
15+
16+
**To Reproduce**
17+
Steps to reproduce the behavior:
18+
1. Go to '...'
19+
2. Click on '....'
20+
3. Scroll down to '....'
21+
4. See error
22+
23+
**Expected behavior**
24+
A clear and concise description of what you expected to happen.
25+
26+
**Screenshots**
27+
If applicable, add screenshots to help explain your problem.
28+
29+
**Additional context**
30+
Add any other context about the problem here.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Feature request
3+
about: Suggest an new Feature or Improvement
4+
title: "[FEATURE]"
5+
type: feature
6+
assignees: ''
7+
8+
---
9+
10+
**Context**
11+
Tell us about the scenario you and use case, you seek additional functionality in.
12+
13+
**Scope**
14+
A clear and concise description of what you want to happen.
15+
16+
**Out of scope**
17+
If needed, describe what parts of a feature can be ignored for now.
18+
19+
_Hint_: Smaller feature wishes tend to be implemented and shipped quicker!
20+
21+
**Technical Steps**
22+
(Optional) - outline steps for contributors to give implementation guidance and allow transparent technical discussions.
23+
24+
**Workarounds & Alternatives**
25+
Describe, if possible, how you are solving this problem today.
26+
27+
**Additional context**
28+
Add any other context or screenshots about the feature request here.

.github/settings.yml

Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
# These settings are synced to GitHub by https://probot.github.io/apps/settings/
2+
3+
repository:
4+
# See https://docs.github.com/en/rest/reference/repos#update-a-repository for all available settings.
5+
6+
# The name of the repository. Changing this will rename the repository
7+
name: crossplane-provider-cloudfoundry
8+
9+
# A short description of the repository that will show up on GitHub
10+
description: Crossplane Provider for Cloud Foundry
11+
12+
# A URL with more information about the repository
13+
homepage:
14+
15+
# A comma-separated list of topics to set on the repository
16+
topics:
17+
18+
# Either `true` to enable issues for this repository, `false` to disable them.
19+
has_issues: true
20+
21+
# Either `true` to enable projects for this repository, or `false` to disable them.
22+
# If projects are disabled for the organization, passing `true` will cause an API error.
23+
has_projects: false
24+
25+
# Either `true` to enable the wiki for this repository, `false` to disable it.
26+
has_wiki: false
27+
28+
# Either `true` to enable downloads for this repository, `false` to disable them.
29+
has_downloads: true
30+
31+
# Updates the default branch for this repository.
32+
default_branch: main
33+
34+
# Either `true` to allow squash-merging pull requests, or `false` to prevent
35+
# squash-merging.
36+
allow_squash_merge: true
37+
38+
# Either `true` to allow merging pull requests with a merge commit, or `false`
39+
# to prevent merging pull requests with merge commits.
40+
allow_merge_commit: false
41+
42+
# Either `true` to allow rebase-merging pull requests, or `false` to prevent
43+
# rebase-merging.
44+
allow_rebase_merge: false
45+
46+
# Either `true` to enable automatic deletion of branches on merge, or `false` to disable
47+
delete_branch_on_merge: true
48+
49+
# Allow users to let gh automatically merge pullrequests in case all requirements are satisified
50+
allow_auto_merge: true
51+
52+
# Labels: define labels for Issues and Pull Requests
53+
labels:
54+
- name: bug
55+
color: CC0000
56+
description: An issue with the system.
57+
58+
- name: feature
59+
# If including a `#`, make sure to wrap it with quotes!
60+
color: '#336699'
61+
description: New functionality.
62+
63+
- name: renovate
64+
color: '#E0E4CC'
65+
description: Dependencies need to be updated.
66+
67+
# Milestones: define milestones for Issues and Pull Requests
68+
milestones:
69+
# - title: milestone-title
70+
# description: milestone-description
71+
# # The state of the milestone. Either `open` or `closed`
72+
# state: open
73+
74+
# Collaborators: give specific users access to this repository.
75+
# See https://docs.github.com/en/rest/reference/repos#add-a-repository-collaborator for available options
76+
collaborators:
77+
# - username: bkeepers
78+
# permission: push
79+
# - username: hubot
80+
# permission: pull
81+
82+
# Note: `permission` is only valid on organization-owned repositories.
83+
# The permission to grant the collaborator. Can be one of:
84+
# * `pull` - can pull, but not push to or administer this repository.
85+
# * `push` - can pull and push, but not administer this repository.
86+
# * `admin` - can pull, push and administer this repository.
87+
# * `maintain` - Recommended for project managers who need to manage the repository without access to sensitive or destructive actions.
88+
# * `triage` - Recommended for contributors who need to proactively manage issues and pull requests without write access.
89+
90+
- username: co-hyperspace-serviceuser
91+
permission: admin
92+
93+
# See https://docs.github.com/en/rest/reference/teams#add-or-update-team-repository-permissions for available options
94+
teams:
95+
# - name: core
96+
# # The permission to grant the team. Can be one of:
97+
# # * `pull` - can pull, but not push to or administer this repository.
98+
# # * `push` - can pull and push, but not administer this repository.
99+
# # * `admin` - can pull, push and administer this repository.
100+
# # * `maintain` - Recommended for project managers who need to manage the repository without access to sensitive or destructive actions.
101+
# # * `triage` - Recommended for contributors who need to proactively manage issues and pull requests without write access.
102+
# permission: admin
103+
# - name: docs
104+
# permission: push
105+
106+
- name: developers
107+
permission: push
108+
- name: operators
109+
permission: push
110+
- name: contributors
111+
permission: push
112+
113+
branches:
114+
- name: main
115+
# https://docs.github.com/en/rest/reference/repos#update-branch-protection
116+
# Branch Protection settings. Set to null to disable
117+
protection:
118+
# Required. Require at least one approving review on a pull request, before merging. Set to null to disable.
119+
required_pull_request_reviews:
120+
# The number of approvals required. (1-6)
121+
required_approving_review_count: 1
122+
# Dismiss approved reviews automatically when a new commit is pushed.
123+
dismiss_stale_reviews: true
124+
# Blocks merge until code owners have reviewed.
125+
require_code_owner_reviews: false
126+
# 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.
127+
#dismissal_restrictions:
128+
# users: []
129+
# teams: []
130+
# Required. Require status checks to pass before merging. Set to null to disable
131+
required_status_checks:
132+
# Required. Require branches to be up to date before merging.
133+
strict: false
134+
# Required. The list of status checks to require in order to merge into this branch
135+
contexts: []
136+
# Required. Enforce all configured restrictions for administrators. Set to true to enforce required status checks for repository administrators. Set to null to disable.
137+
enforce_admins: false
138+
# Prevent merge commits from being pushed to matching branches
139+
required_linear_history: false
140+
# Required. Restrict who can push to this branch. Team and user restrictions are only available for organization-owned repositories. Set to null to disable.
141+
restrictions: null
142+
# apps: []
143+
# users: []
144+
# teams: []

0 commit comments

Comments
 (0)