-
-
Notifications
You must be signed in to change notification settings - Fork 47
27 lines (20 loc) · 702 Bytes
/
app-stats.yml
File metadata and controls
27 lines (20 loc) · 702 Bytes
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
name: App Stats
on:
schedule:
- cron: '0 6 1 * *'
jobs:
log:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v5
- name: Collect stats
uses: gr2m/app-stats-action@v1.x
id: stats
with:
id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.PRIVATE_KEY }}
- run: "echo installations: '${{ steps.stats.outputs.installations }}'"
- run: "echo repositories: '${{ steps.stats.outputs.repositories }}'"
- run: "echo suspended: '${{ steps.stats.outputs.suspended_installations }}'"
- run: "echo most popular repositories: '${{ steps.stats.outputs.popular_repositories }}'"