Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/stable-website' into fix-impor…
Browse files Browse the repository at this point in the history
…ted-certificates-update
  • Loading branch information
jocgir committed Jun 10, 2020
2 parents dc45949 + 3853d33 commit 027159b
Show file tree
Hide file tree
Showing 445 changed files with 38,558 additions and 8,066 deletions.
1,222 changes: 0 additions & 1,222 deletions .github/CONTRIBUTING.md

This file was deleted.

310 changes: 0 additions & 310 deletions .github/MAINTAINING.md

This file was deleted.

2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- See what makes a good Pull Request at : https://github.com/terraform-providers/terraform-provider-aws/blob/master/.github/CONTRIBUTING.md#pull-requests --->
<!--- See what makes a good Pull Request at : https://github.com/terraform-providers/terraform-provider-aws/blob/master/docs/CONTRIBUTING.md --->

<!--- Please keep this note for the community --->

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
name: CHANGELOG Checks
on:
push:
branches:
- master
pull_request:
paths:
- CHANGELOG.md

env:
GO_VERSION: "1.14"
GO111MODULE: on

jobs:
PRCheck:
name: PR Check
comment:
if: github.event_name == 'pull_request' && !contains(fromJSON('["bflad", "breathingdust", "ewbankkit", "gdavison", "maryelizbeth"]'), github.actor)
name: Comment
runs-on: ubuntu-latest
steps:
- name: PR Comment
Expand All @@ -22,3 +30,18 @@ jobs:
Remove any changes to the `CHANGELOG.md` file and commit them in this pull request to prevent delays with reviewing and potentially merging this pull request.
- name: Fail the check
run: exit 1
misspell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
continue-on-error: true
timeout-minutes: 2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- run: go install github.com/client9/misspell/cmd/misspell
- run: misspell -error -source text CHANGELOG.md
10 changes: 3 additions & 7 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,11 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: git fetch tags
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- uses: actions/cache@v1
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/setup-go@v1
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go_version }}
- name: go build
Expand Down
Loading

0 comments on commit 027159b

Please sign in to comment.