Skip to content

Commit 38ef652

Browse files
Added test workflow file
1 parent ba8c945 commit 38ef652

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
on: [push]
2+
3+
jobs:
4+
send_message:
5+
runs-on: ubuntu-latest
6+
name: Send test message
7+
8+
steps:
9+
- id: initial
10+
uses: juztcode/gitter-github-action@v1
11+
with:
12+
room-id: ${{ secrets.GITTER_ROOM_ID }}
13+
token: ${{ secrets.GITTER_TOKEN }}
14+
text: Pending
15+
16+
- uses: juztcode/gitter-github-action@v1
17+
with:
18+
room-id: ${{ secrets.GITTER_ROOM_ID }}
19+
token: ${{ secrets.GITTER_TOKEN }}
20+
text: Success
21+
message-id: ${{ steps.initial.outputs.message-id }}

0 commit comments

Comments
 (0)