Skip to content

Commit

Permalink
Merge branch 'release/v0.6.0' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
npalm committed Oct 10, 2020
2 parents d1ae594 + 304bd50 commit 93fbea2
Show file tree
Hide file tree
Showing 16 changed files with 636 additions and 463 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/auto-approve-dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Auto approve dependabot
on: pull_request

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: hmarr/[email protected]
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.0] - 2020-10-10

### Added

- Only allow tagging and termination of runner instances #201 @jpalomaki

### Fixed

- Fix pagination with listing self-hosted runners #202 @HenryNguyen5


## [0.5.0] - 2020-08-25

### Added
Expand Down Expand Up @@ -69,7 +80,8 @@ terraform import module.runners.module.webhook.aws_cloudwatch_log_group.webhook

- First release.

[unreleased]: https://github.com/philips-labs/terraform-aws-github-runner/compare/v0.5.0..HEAD
[unreleased]: https://github.com/philips-labs/terraform-aws-github-runner/compare/v0.6.0..HEAD
[0.6.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.5.0..v0.6.0
[0.5.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.4.0..v0.5.0
[0.4.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.3.0..v0.4.0
[0.3.0]: https://github.com/philips-labs/terraform-aws-github-runner/releases/tag/v0.2.0..v0.3.0
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,20 +100,20 @@ First you need to download the lambda releases. The lambda code is available as
```terraform
module "lambdas" {
source = "philips-labs/github-runner/aws//modules/download-lambda"
version = "0.5.0"
version = "0.6.0"
lambdas = [
{
name = "webhook"
tag = "v0.5.0"
tag = "v0.6.0"
},
{
name = "runners"
tag = "v0.5.0"
tag = "v0.6.0"
},
{
name = "runner-binaries-syncer"
tag = "v0.5.0"
tag = "v0.6.0"
}
]
}
Expand All @@ -132,7 +132,7 @@ Next create a second terraform workspace and initiate the module, see the exampl
```terraform
module "github-runner" {
source = "philips-labs/github-runner/aws"
version = "0.5.0"
version = "0.6.0"
aws_region = "eu-west-1"
vpc_id = "vpc-123"
Expand Down
6 changes: 3 additions & 3 deletions examples/default/lambdas-download/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ module "lambdas" {
lambdas = [
{
name = "webhook"
tag = "v0.5.0"
tag = "v0.6.0"
},
{
name = "runners"
tag = "v0.5.0"
tag = "v0.6.0"
},
{
name = "runner-binaries-syncer"
tag = "v0.5.0"
tag = "v0.6.0"
}
]
}
Expand Down
6 changes: 3 additions & 3 deletions examples/permissions-boundary/lambdas-download/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ module "lambdas" {
lambdas = [
{
name = "webhook"
tag = "v0.5.0"
tag = "v0.6.0"
},
{
name = "runners"
tag = "v0.5.0"
tag = "v0.6.0"
},
{
name = "runner-binaries-syncer"
tag = "v0.5.0"
tag = "v0.6.0"
}
]
}
Expand Down
6 changes: 3 additions & 3 deletions modules/download-lambda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ module "lambdas" {
lambdas = [
{
name = "webhook"
tag = "v0.5.0"
tag = "v0.6.0"
},
{
name = "runners"
tag = "v0.5.0"
tag = "v0.6.0"
},
{
name = "runner-binaries-syncer"
tag = "v0.5.0"
tag = "v0.6.0"
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@
"dist": "yarn build && cd dist && zip ../runner-binaries-syncer.zip index.js"
},
"devDependencies": {
"@octokit/rest": "^18.0.3",
"@types/jest": "^26.0.9",
"@types/node": "^14.6.0",
"@octokit/rest": "^18.0.6",
"@types/jest": "^26.0.13",
"@types/node": "^14.10.1",
"@types/request": "^2.48.4",
"@typescript-eslint/eslint-plugin": "^3.10.0",
"@typescript-eslint/parser": "^3.9.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"@zeit/ncc": "^0.22.1",
"aws-sdk": "^2.739.0",
"eslint": "^6.8.0",
"aws-sdk": "^2.767.0",
"eslint": "^7.10.0",
"jest": "^26.4.2",
"ts-jest": "^26.2.0",
"ts-node-dev": "^1.0.0-pre.60",
"typescript": "^3.9.6"
"ts-jest": "^26.4.1",
"ts-node-dev": "^1.0.0-pre.61",
"typescript": "^4.0.3"
},
"dependencies": {
"yn": "^4.0.0"
Expand Down
Loading

0 comments on commit 93fbea2

Please sign in to comment.