Skip to content

Commit a9c55d6

Browse files
committed
feat: initial commit
0 parents  commit a9c55d6

File tree

16 files changed

+14099
-0
lines changed

16 files changed

+14099
-0
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
version: 2
3+
updates:
4+
- package-ecosystem: npm
5+
directory: /
6+
schedule:
7+
interval: daily
8+
labels:
9+
- 'type: dependencies'

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/
2+
lib/
3+
.idea/

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
# Typescript module

action.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Discord Reporter
2+
description: Reports build and test results to Discord via webhooks
3+
author: Team Galacticraft
4+
5+
branding:
6+
color: blue
7+
icon: message-square
8+
9+
inputs:
10+
webhook:
11+
required: true
12+
description: The Discord-provided webhook url.
13+
outcome:
14+
required: true
15+
description: Outcome of previous step, use ${{ steps.<build step>.outcome }}.
16+
token:
17+
required: true
18+
description: Github token, use ${{ secrets.GITHUB_TOKEN }}.
19+
tests:
20+
required: false
21+
description: The directory containing JUnit5 TEST-*.xml files.
22+
default: "build/test-results/test/"
23+
24+
runs:
25+
using: node12
26+
main: dist/index.js

0 commit comments

Comments
 (0)