forked from GoogleCloudPlatform/terraformer
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'GoogleCloudPlatform:master' into master
- Loading branch information
Showing
381 changed files
with
21,149 additions
and
4,152 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: "tagged-release" | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: Bump Version | ||
required: true | ||
jobs: | ||
tagged-release: | ||
name: "Tagged Release" | ||
runs-on: "ubuntu-latest" | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.17 | ||
- name: Test | ||
run: go build -v && go test ./... | ||
- name: Build for linux | ||
run: go build -o terraformer-all-linux-amd64 | ||
- name: Build for mac | ||
run: GOOS=darwin go build -o terraformer-all-darwin-amd64 | ||
- name: Build for mac Apple Silicon | ||
run: GOOS=darwin GOARCH=arm64 go build -o terraformer-all-darwin-arm64 | ||
- name: Build for windows | ||
run: GOOS=windows go build -o terraformer-all-windows-amd64 | ||
- name: Build for all providers | ||
run: go run build/multi-build/main.go | ||
|
||
- uses: "marvinpinto/action-automatic-releases@latest" | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
automatic_release_tag: ${{ github.event.inputs.version }} | ||
prerelease: false | ||
files: | | ||
terraformer-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: 'Close stale issues and PRs' | ||
on: | ||
schedule: | ||
- cron: '30 1 * * *' | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v4 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.' | ||
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.' | ||
days-before-issue-stale: 60 | ||
days-before-issue-close: 7 | ||
days-before-pr-close: -1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
.idea | ||
generated | ||
terraformer | ||
terraformer* | ||
cmd/tmp | ||
.DS_Store | ||
.terraform | ||
.vscode | ||
terraform.tfstate | ||
terraform.tfstate.backup | ||
init.tf | ||
init.tf |
Oops, something went wrong.