Skip to content
This repository was archived by the owner on Jun 27, 2021. It is now read-only.

Commit 227f92b

Browse files
committed
Merge branch 'master' of github.com:DeviaVir/terraform-provider-gsuite
2 parents 9ba0d65 + aff3de1 commit 227f92b

33 files changed

+3969
-831
lines changed

.github/stale.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 60
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 7
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- pinned
8+
- security
9+
- bug
10+
- enhancement
11+
# Label to use when marking an issue as stale
12+
staleLabel: wontfix
13+
# Comment to post when marking an issue as stale. Set to `false` to disable
14+
markComment: >
15+
This issue has been automatically marked as stale because it has not had
16+
recent activity. It will be closed if no further activity occurs. Thank you
17+
for your contributions.
18+
# Comment to post when closing a stale issue. Set to `false` to disable
19+
closeComment: false

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
.glide/
1717

1818
# Terraform & Provider specific
19+
backend.tf
1920
terraform-provider-*
2021
.terraform
2122
terraform.tfstate*

.travis.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,11 @@
1-
sudo: required
21
services:
32
- docker
43
language: go
54
go:
6-
- 1.9
7-
8-
before_install:
9-
# Setup dependency management tool
10-
- curl -L -s https://github.com/golang/dep/releases/download/v0.4.1/dep-linux-amd64 -o $GOPATH/bin/dep
11-
- chmod +x $GOPATH/bin/dep
12-
13-
install:
14-
- go get github.com/hashicorp/terraform
15-
- dep ensure
5+
- "1.12"
166

177
script:
188
- 'if [ "${TRAVIS_BUILD_DIR}" != "${GOPATH}/src/github.com/DeviaVir/terraform-provider-gsuite" ]; then ln -s "${TRAVIS_BUILD_DIR}" "${GOPATH}/src/github.com/DeviaVir/terraform-provider-gsuite"; fi'
9+
- make vendor
1910
- make test
2011
- make

0 commit comments

Comments
 (0)