Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b4b5516

Browse files
committed
Add pull-request-test workflow
1 parent 89e3c40 commit b4b5516

File tree

6 files changed

+7483
-23251
lines changed

6 files changed

+7483
-23251
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
on:
2+
pull_request:
3+
branches: master
4+
types: [opened, synchronize]
5+
6+
jobs:
7+
pull-request-test:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: ./
12+
with:
13+
script: |
14+
github.issues.createComment({
15+
owner: context.repo.owner,
16+
repo: context.repo.repo,
17+
issue_number: context.payload.number,
18+
body: "Hello from actions/github-script!"
19+
})

0 commit comments

Comments
 (0)