-
-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (51 loc) · 1.47 KB
/
nuget.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
name: nuget
on:
workflow_dispatch:
inputs:
global:
type: choice
description: Collect General Stats
required: true
options:
- $true
- $false
owner:
description: Collect Specific Owner Stats
schedule:
- cron: "0 2 1 * *"
jobs:
nuget:
runs-on: ubuntu-latest
steps:
- name: 🤖 defaults
uses: devlooped/actions-bot@v1
with:
name: ${{ secrets.BOT_NAME }}
email: ${{ secrets.BOT_EMAIL }}
gh_token: ${{ secrets.GH_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: 🤘 checkout
uses: actions/checkout@v4
with:
token: ${{ env.GH_TOKEN }}
- name: ⚙ sponsors
shell: pwsh
run: |
dotnet tool update -g dotnet-sponsor
$owners = gc owners.json | convertfrom-json
if ('${{ github.event.inputs.owner }}') {
$owners = @('${{ github.event.inputs.owner }}')
}
foreach ($owner in $owners) {
sponsor nuget --tos --exceptions --oss-only false --force --owner $owner
}
# global stats for all packages
if (${{ github.event.inputs.global || '$true' }}) {
sponsor nuget --tos --exceptions --force
}
- name: ⬆️ commit
run: |
git add *.json
git commit -m "🖉 Update OSS contributors stats"
git pull
git push