update readme for new workflow syntax

This commit is contained in:
Miguel A. Arilla 2019-09-25 16:00:08 +01:00
parent e760aabf79
commit 466532e69e
No known key found for this signature in database
GPG key ID: 07C997FA0F1B7077

View file

@ -5,19 +5,23 @@ A GitHub action to comment on the relevant open PR when a commit is pushed.
## Usage
- Requires the `GITHUB_TOKEN` secret.
- Requires the comment's message in the `args`.
- Requires the comment's message in the `msg` parameter.
### Sample workflow
```
workflow "comment-on-pr example" {
on = "push"
resolves = ["unsplash/comment-on-pr@master"]
}
action "unsplash/comment-on-pr@master" {
uses = "unsplash/comment-on-pr@master"
args = ["Check out this message!"]
secrets = ["GITHUB_TOKEN"]
}
name: comment-on-pr example
on: pull_request
jobs:
example:
name: sample comment
runs-on: ubuntu-latest
steps:
- name: comment PR
uses: unsplash/comment-on-pr@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
msg: "Check out this message!"
```