You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 6, 2025. It is now read-only.
Merge branch 'terraform-aws-modules-master' into fetch_upstream_20211118
* terraform-aws-modules-master: (32 commits)
chore: Giving up on releaserc config (for now) (terraform-aws-modules#257)
chore(release): version 6.1.3 [skip ci]
fix: Revert small useless change in main.tf (terraform-aws-modules#256)
chore(release): version 6.1.2 [skip ci]
fix: Small useless change in main.tf to test semantic-release (last one, I promise) (terraform-aws-modules#255)
fix: Small useless change in main.tf to test semantic-release (terraform-aws-modules#254)
chore: Updated .releaserc config and tf file (to trigger release) (terraform-aws-modules#253)
chore: Updated .releaserc config (terraform-aws-modules#252)
chore(release): version 6.1.1 [skip ci]
chore: Added workflow_dispatch to allow manual releases (terraform-aws-modules#251)
fix: update CI/CD process to enable auto-release workflow (terraform-aws-modules#250)
Updated CHANGELOG
feat: Add security group egress rule support, fix documentation links (terraform-aws-modules#249)
Updated CHANGELOG
chore: Updated release Makefile
Updated CHANGELOG
BREAKING CHANGE: update module to allow for control over individual cluster instances and latest features (terraform-aws-modules#243)
chore: update CI workflow to use composite actions, update pre-commit versions (terraform-aws-modules#242)
Updated CHANGELOG
feat: Add support for restore_to_point_in_time (terraform-aws-modules#194)
...
Copy file name to clipboardExpand all lines: .github/workflows/pre-commit.yml
+46-70Lines changed: 46 additions & 70 deletions
Original file line number
Diff line number
Diff line change
@@ -2,101 +2,77 @@ name: Pre-Commit
2
2
3
3
on:
4
4
pull_request:
5
-
push:
6
5
branches:
6
+
- main
7
7
- master
8
8
9
+
env:
10
+
TERRAFORM_DOCS_VERSION: v0.16.0
11
+
9
12
jobs:
10
-
# Min Terraform version(s)
11
-
getDirectories:
12
-
name: Get root directories
13
-
runs-on: ubuntu-latest
14
-
steps:
15
-
- name: Checkout
16
-
uses: actions/checkout@v2
17
-
- name: Install Python
18
-
uses: actions/setup-python@v2
19
-
- name: Build matrix
20
-
id: matrix
21
-
run: |
22
-
DIRS=$(python -c "import json; import glob; print(json.dumps([x.replace('/versions.tf', '') for x in glob.glob('./**/versions.tf', recursive=True)]))")
"successComment": "This ${issue.pull_request ? 'PR is included' : 'issue has been resolved'} in version [${nextRelease.version}](${releaseInfos[0].url}) :tada:",
14
+
"labels": false,
15
+
"releasedLabels": false
16
+
}
17
+
],
18
+
[
19
+
"@semantic-release/changelog",
20
+
{
21
+
"changelogFile": "CHANGELOG.md",
22
+
"changelogTitle": "# Changelog\n\nAll notable changes to this project will be documented in this file."
23
+
}
24
+
],
25
+
[
26
+
"@semantic-release/git",
27
+
{
28
+
"assets": [
29
+
"CHANGELOG.md"
30
+
],
31
+
"message": "chore(release): version ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
0 commit comments