Skip to content

Commit

Permalink
🔖 v1.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dflook committed Jun 27, 2023
1 parent 8b379c4 commit 48f4a12
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,28 @@ The actions are versioned as a suite. Some actions may have no change in behavio

When using an action you can specify the version as:

- `@v1.35.0` to use an exact release
- `@v1.35` to use the latest patch release for the specific minor version
- `@v1.36.0` to use an exact release
- `@v1.36` to use the latest patch release for the specific minor version
- `@v1` to use the latest patch release for the specific major version

## [1.36.0] - 2023-06-27

### Added
- Support for being triggered by [repository_dispatch](https://docs.github.com/en/actions/reference/events-that-trigger-workflows#repository_dispatch) events.

Previously [dflook/terraform-plan](https://github.com/dflook/terraform-github-actions/tree/main/terraform-plan) and [dflook/terraform-apply](https://github.com/dflook/terraform-github-actions/tree/main/terraform-apply) couldn't work with PR comments when triggered by repository_dispatch events.
With this change `repository_dispatch` events that include the PR api url in the client payload will be able to use PR comments.

The minimum client payload looks like:

```json
{
"pull_request": {
"url": "https://api.github.com/repos/dflook/terraform-github-actions/pulls/1"
}
}
```

## [1.35.0] - 2023-06-18

### Added
Expand Down Expand Up @@ -517,6 +535,7 @@ First release of the GitHub Actions:
- [dflook/terraform-new-workspace](terraform-new-workspace)
- [dflook/terraform-destroy-workspace](terraform-destroy-workspace)

[1.36.0]: https://github.com/dflook/terraform-github-actions/compare/v1.35.0...v1.36.0
[1.35.0]: https://github.com/dflook/terraform-github-actions/compare/v1.34.0...v1.35.0
[1.34.0]: https://github.com/dflook/terraform-github-actions/compare/v1.33.0...v1.34.0
[1.33.0]: https://github.com/dflook/terraform-github-actions/compare/v1.32.1...v1.33.0
Expand Down
2 changes: 1 addition & 1 deletion image/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='terraform-github-actions',
version='1.35.0',
version='1.36.0',
packages=find_packages('src'),
package_dir={'': 'src'},
package_data={'terraform_version': ['backend_constraints.json']},
Expand Down

0 comments on commit 48f4a12

Please sign in to comment.