Skip to content

Commit 6e3bc84

Browse files
committed
README
1 parent d77c91c commit 6e3bc84

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

README.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
A GitHub action that lets code-owners merge code via GitHub reviews.
22

3-
- can't use github app token
4-
- uses scheduler
3+
```yml
4+
name: Example Workflow
5+
on:
6+
pull_request_target:
7+
issue_comment: { types: created }
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v1
16+
- name: Runs this workflow
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+
uses: orta/code-organizer-merge-on-green@master
20+
21+
22+
```

0 commit comments

Comments
 (0)