-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.yaml
71 lines (71 loc) · 2.18 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version: 0.0.1
achievements:
- achievement:
name: Shooting Star
icon: https://raw.githubusercontent.com/vauntdev/example/main/.vaunt/shooting_star.png
description: Awarded for starring our repository, make a wish!
triggers:
- trigger:
actor: author
action: star
condition: starred = true
- achievement:
name: Every Bit Counts
icon: https://raw.githubusercontent.com/vauntdev/example/main/.vaunt/every_bit_counts.png
description: No commit is too small!
triggers:
- trigger:
actor: author
action: commit
condition: count() >= 1
- achievement:
name: Pull Request Hero
icon: https://raw.githubusercontent.com/vauntdev/example/main/.vaunt/pull_request_hero.png
description: You're a PR hero, rock on!
triggers:
- trigger:
actor: author
action: pull_request
condition: merged = true
- achievement:
name: Closer
icon: https://raw.githubusercontent.com/vauntdev/example/main/.vaunt/closer.png
description: Only closers get coffee!
triggers:
- trigger:
actor: author
action: issue
condition: closed = true
- achievement:
name: Bug Hunter
icon: https://raw.githubusercontent.com/vauntdev/example/main/.vaunt/bug_hunter.png
description: No bug escapes your keen eye!
triggers:
- trigger:
actor: author
action: issue
condition: labels in ['bug'] & reactors in ['elewis787', 'jeff10110322', 'simonmazzaroth']
webhooks:
- webhook:
name: achievements
type: github
metadata:
discussion:
repository: VauntDev/example
title: Vaunt Achievements
events:
- event:
type: achievement
value: Shooting Star
- event:
type: achievement
value: Every Bit Counts
- event:
type: achievement
value: Pull Request Hero
- event:
type: achievement
value: Closer
- event:
type: achievement
value: Bug Hunter