App Stats #1487
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: App Stats | |
on: | |
schedule: | |
- cron: '0 6 1 * *' | |
jobs: | |
log: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout sources' | |
uses: actions/checkout@v4 | |
- name: 'Collect stats' | |
uses: gr2m/[email protected] | |
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 }}'" |