From 9b05f1158fb63aef986403210f233955418188bb Mon Sep 17 00:00:00 2001 From: thenaturalist Date: Fri, 26 Jun 2020 22:37:08 +0200 Subject: [PATCH 1/2] README.md Markdown link typo fix Correct link reference & adjust Markown link checking --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index da2a350..f64c7ae 100644 --- a/README.md +++ b/README.md @@ -206,7 +206,6 @@ Copyright © 2020 [Mineiros GmbH][homepage] [badge-license]: https://img.shields.io/badge/license-Apache%202.0-brightgreen.svg [badge-terraform]: https://img.shields.io/badge/terraform-0.13%20and%200.12.20+-623CE4.svg?logo=terraform [badge-slack]: https://img.shields.io/badge/slack-@mineiros--community-f32752.svg?logo=slack - [build-status]: https://mineiros.semaphoreci.com/projects/terraform-github-team [releases-github]: https://github.com/mineiros-io/terraform-github-team/releases @@ -217,8 +216,6 @@ Copyright © 2020 [Mineiros GmbH][homepage] [AWS]: https://aws.amazon.com/ [Semantic Versioning (SemVer)]: https://semver.org/ -[Github teams](https://help.github.com/en/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams) - [variables.tf]: https://github.com/mineiros-io/terraform-github-team/blob/master/variables.tf [examples/]: https://github.com/mineiros-io/terraform-github-team/tree/master/examples [Issues]: https://github.com/mineiros-io/terraform-github-team/issues @@ -226,3 +223,4 @@ Copyright © 2020 [Mineiros GmbH][homepage] [Makefile]: https://github.com/mineiros-io/terraform-github-team/blob/master/Makefile [Pull Requests]: https://github.com/mineiros-io/terraform-github-team/pulls [Contribution Guidelines]: https://github.com/mineiros-io/terraform-github-team/blob/master/CONTRIBUTING.md +[Github teams]: https://help.github.com/en/github/setting-up-and-managing-organizations-and-teams/organizing-members-into-teams From a9dfed4a684ecf52336e41a733e9e7b25e4292c4 Mon Sep 17 00:00:00 2001 From: thenaturalist Date: Mon, 29 Jun 2020 18:56:30 +0200 Subject: [PATCH 2/2] Adapt pre-commit hook tests to include GitHub token This change adapts to a provider change requiring a GitHub token to be set when running terraform validate. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index b73ff14..c25e966 100644 --- a/Makefile +++ b/Makefile @@ -44,6 +44,7 @@ default: help ## Run pre-commit hooks in build-tools docker container. .PHONY: test/pre-commit +test/pre-commit: DOCKER_FLAGS += ${DOCKER_GITHUB_FLAGS} test/pre-commit: $(call docker-run,pre-commit run -a)