Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

hello #49

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
id: check
with:
trigger: '#hello'
- run: 'echo Found it!'
- run: 'echo Found hello!'
if: steps.check.outputs.triggered == 'true'

eyes:
Expand All @@ -26,7 +26,7 @@ jobs:
reaction: eyes
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
- run: 'echo Found it!'
- run: 'echo Found eyes!'
if: steps.check.outputs.triggered == 'true'

rocket:
Expand All @@ -39,5 +39,5 @@ jobs:
reaction: rocket
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
- run: 'echo Found it!'
if: steps.check.outputs.triggered == 'true'
- run: 'echo Found rocket!'
if: steps.check.outputs.triggered == 'true'
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Look for a "trigger word" in a pull-request description or comment, so that late

## Example usage in a workflow

Your workflow needs to listen to the following events:
Your workflow needs to listen to the following events423:
```
on:
pull_request:
Expand All @@ -15,7 +15,7 @@ on:
types: [created]
```

And then you can use the action in your jobs like this:
And then you can use the action in your jobs like this: 123

```
jobs:
Expand Down