Skip to content

Commit

Permalink
Merge branch 'release/1.0.13'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed May 9, 2020
2 parents 03c6d3c + 62cff67 commit ac1207f
Show file tree
Hide file tree
Showing 7 changed files with 3,604 additions and 1,999 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [1.0.13] - 2020-05-09
### Changed
* Update dependencies

## Added
* Add "enable-pull-request-comment" input
* Add "enable-commit-comment" input

## [1.0.12] - 2020-04-07
### Changed
* Update dependencies
Expand Down Expand Up @@ -78,7 +86,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
* Deploy to Netlify
* Comment on GitHub PR

[Unreleased]: https://github.com/nwtgck/actions-netlify/compare/v1.0.12...HEAD
[Unreleased]: https://github.com/nwtgck/actions-netlify/compare/v1.0.13...HEAD
[1.0.13]: https://github.com/nwtgck/actions-netlify/compare/v1.0.12...v1.0.13
[1.0.12]: https://github.com/nwtgck/actions-netlify/compare/v1.0.11...v1.0.12
[1.0.11]: https://github.com/nwtgck/actions-netlify/compare/v1.0.10...v1.0.11
[1.0.10]: https://github.com/nwtgck/actions-netlify/compare/v1.0.9...v1.0.10
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ jobs:
- `production-branch` (e.g. "master")
- `github-token: ${{ secrets.GITHUB_TOKEN }}`
- `deploy-message` A custom deploy message to see on Netlify deployment (e.g. `${{ github.event.pull_request.title }}`)
- `enable-pull-request-comment: true` Comment on pull request (default: true)
- `enable-commit-comment: true` Comment on GitHub commit (default)

### Outputs
- `deploy-url` A deployment URL generated by Netlify
Expand Down
6 changes: 6 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ inputs:
production-branch:
description: Production branch
required: false
enable-pull-request-comment:
description: Enable pull request comment
required: false
enable-commit-comment:
description: Enable commit comment
required: false
outputs:
deploy-url:
description: Deploy URL
Expand Down
Loading

2 comments on commit ac1207f

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.