-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terraform 0.14 upgrade #18
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
7ced575
auto-update for context.tf and readme
maximmi 8cda0c2
more checks added
maximmi bdfffc8
workflow spllitted to have different schedule, minur fixes due to PR …
maximmi b556a22
updates due to PR review
maximmi a35ab4b
readme update
maximmi 1699a10
Make auto-updates be patch releases
Nuru da8b4e8
Update via fixed build script
Nuru e243adc
Updates from build-harness
Nuru 59af300
terraform 0.14 upgrade
Nuru 78e9b82
Manual update of extra label modules
Nuru 31caff1
Make bulid-harness the authority on context.tf
Nuru 80b7e7c
Always validate CODEOWNERS
Nuru File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Validating CODEOWNERS rules …
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
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,52 @@ | ||
pull_request_rules: | ||
- name: "approve automated PRs that have passed checks" | ||
conditions: | ||
- "check-success~=test/bats" | ||
- "check-success~=test/readme" | ||
- "check-success~=test/terratest" | ||
- "base=master" | ||
- "author=cloudpossebot" | ||
- "head~=auto-update/.*" | ||
actions: | ||
review: | ||
type: "APPROVE" | ||
bot_account: "cloudposse-mergebot" | ||
message: "We've automatically approved this PR because the checks from the automated Pull Request have passed." | ||
|
||
- name: "merge automated PRs when approved and tests pass" | ||
conditions: | ||
- "check-success~=test/bats" | ||
- "check-success~=test/readme" | ||
- "check-success~=test/terratest" | ||
- "base=master" | ||
- "head~=auto-update/.*" | ||
- "#approved-reviews-by>=1" | ||
- "#changes-requested-reviews-by=0" | ||
- "#commented-reviews-by=0" | ||
- "base=master" | ||
- "author=cloudpossebot" | ||
actions: | ||
merge: | ||
method: "squash" | ||
|
||
- name: "delete the head branch after merge" | ||
conditions: | ||
- "merged" | ||
actions: | ||
delete_head_branch: {} | ||
|
||
- name: "ask to resolve conflict" | ||
conditions: | ||
- "conflict" | ||
actions: | ||
comment: | ||
message: "This pull request is now in conflict. Could you fix it @{{author}}? 🙏" | ||
|
||
- name: "remove outdated reviews" | ||
conditions: | ||
- "base=master" | ||
actions: | ||
dismiss_reviews: | ||
changes_requested: true | ||
approved: true | ||
message: "This Pull Request has been updated, so we're dismissing all reviews." |
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,55 @@ | ||
name: "auto-context" | ||
on: | ||
schedule: | ||
# Update context.tf nightly | ||
- cron: '0 3 * * *' | ||
|
||
jobs: | ||
update: | ||
if: github.event_name == 'schedule' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Update context.tf | ||
shell: bash | ||
id: update | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
run: | | ||
if [[ -f context.tf ]]; then | ||
echo "Discovered existing context.tf! Fetching most recent version to see if there is an update." | ||
curl -o context.tf -fsSL https://raw.githubusercontent.com/cloudposse/terraform-null-label/master/exports/context.tf | ||
if git diff --no-patch --exit-code context.tf; then | ||
echo "No changes detected! Exiting the job..." | ||
else | ||
echo "context.tf file has changed. Update examples and rebuild README.md." | ||
make init | ||
make github/init/context.tf | ||
make readme/build | ||
echo "::set-output name=create_pull_request=true" | ||
fi | ||
else | ||
echo "This module has not yet been updated to support the context.tf pattern! Please update in order to support automatic updates." | ||
fi | ||
|
||
- name: Create Pull Request | ||
if: {{ steps.update.outputs.create_pull_request == 'true' }} | ||
uses: cloudposse/actions/github/[email protected] | ||
with: | ||
token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }} | ||
commit-message: Update context.tf from origin source | ||
title: Update context.tf | ||
body: |- | ||
## what | ||
This is an auto-generated PR that updates the `context.tf` file to the latest version from `cloudposse/terraform-null-label` | ||
|
||
## why | ||
To support all the features of the `context` interface. | ||
|
||
branch: auto-update/context.tf | ||
base: master | ||
delete-branch: true | ||
labels: | | ||
auto-update | ||
context |
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,41 @@ | ||
name: "auto-readme" | ||
on: | ||
schedule: | ||
# Update README.md nightly | ||
- cron: '0 4 * * *' | ||
|
||
jobs: | ||
update: | ||
if: github.event_name == 'schedule' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Update readme | ||
shell: bash | ||
id: update | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
run: | | ||
make init | ||
make readme/build | ||
|
||
- name: Create Pull Request | ||
uses: cloudposse/actions/github/[email protected] | ||
with: | ||
token: ${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }} | ||
commit-message: Update README.md and docs | ||
title: Update README.md and docs | ||
body: |- | ||
## what | ||
This is an auto-generated PR that updates the README.md and docs | ||
|
||
## why | ||
To have most recent changes of README.md and doc from origin templates | ||
|
||
branch: auto-update/readme | ||
base: master | ||
delete-branch: true | ||
labels: | | ||
auto-update | ||
readme |
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,18 @@ | ||
name: Validate Codeowners | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
validate-codeowners: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout source code at current commit" | ||
uses: actions/checkout@v2 | ||
- uses: mszostok/[email protected] | ||
with: | ||
# For now, remove "files" check to allow CODEOWNERS to specify non-existent | ||
# files so we can use the same CODEOWNERS file for Terraform and non-Terraform repos | ||
# checks: "files,syntax,owners,duppatterns" | ||
checks: "syntax,owners,duppatterns" | ||
# GitHub access token is required only if the `owners` check is enabled | ||
github_access_token: "${{ secrets.PUBLIC_REPO_ACCESS_TOKEN }}" |
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
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this call the context target from the build-harness?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given that this is run 200 times nightly, I want to keep it light and not require build-harness. I will call build-harness if
context.tf
changes.