Skip to content

Commit

Permalink
Implement terraform-provider-tidbcloud (#4)
Browse files Browse the repository at this point in the history
Co-authored-by: Xiang Zhang <angwerzx@126.com>
  • Loading branch information
shiyuhang0 and zhangyangyu authored Sep 16, 2022
1 parent b50f1b5 commit f5c220f
Show file tree
Hide file tree
Showing 60 changed files with 5,886 additions and 939 deletions.
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

5 changes: 0 additions & 5 deletions .github/CODE_OF_CONDUCT.md

This file was deleted.

23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: "\U0001F41B Bug Report"
about: Create a report to help us improve
title: "[BUG] Title of Bug Report"
labels: type/bug
---

### Terraform CLI and Terraform TiDB Cloud Provider Version
<!---
Run `terraform version` to show the version, and paste the result for Terraform and the TiDB Cloud Provider between the ``` marks below.
If you are not running the latest version of Terraform and the TiDB Cloud Provider, please try to reproduce the issue in a more recent version in case it has been fixed already.
-->

### Describe the bug
<!-- A clear and concise description of what the bug is. -->

### Steps to Reproduce
<!--
Please list the full steps required to reproduce the issue, for example:
1. `terraform init`
2. `terraform apply`
-->
18 changes: 18 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: "\U0001F947 Feature Request"
about: Suggest an idea for this project
title: ''
labels: type/feature-request
---

### Is your feature request related to a problem? Please describe
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->

### Describe the solution you'd like
<!-- A clear and concise description of what you want to happen. -->

### Describe alternatives you've considered
<!-- A clear and concise description of any alternative solutions or features you've considered. -->

### Additional context
<!-- Add any other context or screenshots about the feature request here. -->
6 changes: 4 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
interval: weekly
day: tuesday
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
interval: weekly
day: tuesday
27 changes: 27 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
### What problem does this PR solve? <!--add issue link with summary if exists-->


### What is changed and how it works?


### Check List <!--REMOVE the items that are not applicable-->

Tests <!-- At least one of them must be included. -->

- Unit test
- Integration test
- Manual test (add detailed scripts or steps below)
- No code

Side effects

- Possible performance regression
- Increased code complexity
- Breaking backward compatibility

Related changes

- Need to cherry-pick to the release branch
- Need to update the documentation
- Need to update the `tidb-ansible` repository
- Need to be included in the release note
40 changes: 0 additions & 40 deletions .github/workflows/add-content-to-project.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ name: Tests
# Optionally, you can turn it on using a schedule for regular testing.
on:
pull_request:
branches:
- main
paths-ignore:
- 'README.md'
push:
branches:
- main
paths-ignore:
- 'README.md'

Expand Down
Loading

0 comments on commit f5c220f

Please sign in to comment.