-
-
Notifications
You must be signed in to change notification settings - Fork 1
128 lines (117 loc) · 5.02 KB
/
github-actions-github-sponsors.yml
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
name: Generate Sponsors README
on:
workflow_dispatch:
schedule:
- cron: 30 15 * * 0-6
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.SPONSER_GIT_PERSONAL_ACCESS_TOKEN }}
template: '<a href="https://github.com/{{ login }}"><img src="{{ avatarUrl }}" width="45px" alt="{{ name }}" /></a>'
file: 'README.md'
minimum: 100
maximum: 499
marker: 'slime'
fallback: 'There are currently no sponsors at this level.'
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.SPONSER_GIT_PERSONAL_ACCESS_TOKEN }}
template: '<a href="https://github.com/{{ login }}"><img src="{{ avatarUrl }}" width="60px" alt="{{ name }}" /></a>'
file: 'README.md'
minimum: 500
maximum: 999
marker: 'wolf'
fallback: 'There are currently no sponsors at this level.'
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.SPONSER_GIT_PERSONAL_ACCESS_TOKEN }}
template: '<a href="https://github.com/{{ login }}"><img src="{{ avatarUrl }}" width="70px" alt="{{ name }}" /></a>'
file: 'README.md'
minimum: 1000
maximum: 4999
marker: 'warrior'
fallback: 'There are currently no sponsors at this level.'
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.SPONSER_GIT_PERSONAL_ACCESS_TOKEN }}
template: '<a href="https://github.com/{{ login }}"><img src="{{ avatarUrl }}" width="79px" alt="{{ name }}" /></a>'
file: 'README.md'
minimum: 5000
maximum: 9999
marker: 'auger'
fallback: 'There are currently no sponsors at this level.'
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.SPONSER_GIT_PERSONAL_ACCESS_TOKEN }}
template: '<a href="https://github.com/{{ login }}"><img src="{{ avatarUrl }}" width="90px" alt="{{ name }}" /></a>'
file: 'README.md'
minimum: 10000
maximum: 49999
marker: 'wizard'
fallback: 'There are currently no sponsors at this level.'
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.SPONSER_GIT_PERSONAL_ACCESS_TOKEN }}
template: '<a href="https://github.com/{{ login }}"><img src="{{ avatarUrl }}" width="105px" alt="{{ name }}" /></a>'
file: 'README.md'
minimum: 50000
maximum: 99999
marker: 'demon'
fallback: 'There are currently no sponsors at this level.'
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.SPONSER_GIT_PERSONAL_ACCESS_TOKEN }}
template: '<a href="https://github.com/{{ login }}"><img src="{{ avatarUrl }}" width="125px" alt="{{ name }}" /></a>'
file: 'README.md'
minimum: 100000
maximum: 499999
marker: 'elf'
fallback: 'There are currently no sponsors at this level.'
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.SPONSER_GIT_PERSONAL_ACCESS_TOKEN }}
template: '<a href="https://github.com/{{ login }}"><img src="{{ avatarUrl }}" width="150px" alt="{{ name }}" /></a>'
file: 'README.md'
minimum: 500000
maximum: 999999
marker: 'devilking'
fallback: 'There are currently no sponsors at this level.'
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.SPONSER_GIT_PERSONAL_ACCESS_TOKEN }}
template: '<a href="https://github.com/{{ login }}"><img src="{{ avatarUrl }}" width="200px" alt="{{ name }}" /></a>'
file: 'README.md'
minimum: 1000000
maximum: 1199999
marker: 'hero'
fallback: 'There are currently no sponsors at this level.'
- name: Generate Sponsors 💖
uses: JamesIves/github-sponsors-readme-action@v1
with:
token: ${{ secrets.SPONSER_GIT_PERSONAL_ACCESS_TOKEN }}
template: '<a href="https://github.com/{{ login }}"><img src="{{ avatarUrl }}" width="300px" alt="{{ name }}" /></a>'
file: 'README.md'
minimum: 1200000
marker: 'dragon'
fallback: 'There are currently no sponsors at this level.'
- name: Deploy to GitHub Pages 🚀
uses: JamesIves/[email protected]
with:
branch: main
folder: '.'