Count packages #253
This file contains 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: Count packages | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: "0 0 * * *" # daily | |
jobs: | |
count-packages: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- uses: asdf-vm/actions/setup@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 # v3.0.2 | |
- uses: jdx/mise-action@f8dfbcc150159126838e44b882bf34bd98fd90f3 # v2.1.0 | |
- run: | | |
set -euo pipefail | |
n=$(find pkgs -name registry.yaml | wc -l) | |
echo "count=$n" >> "$GITHUB_OUTPUT" | |
id: aqua | |
- run: | | |
set -euo pipefail | |
n=$(asdf plugin list all | wc -l) | |
echo "count=$n" >> "$GITHUB_OUTPUT" | |
id: asdf | |
- run: | | |
set -euo pipefail | |
n=$(mise p ls-remote --only-names | wc -l) | |
echo "count=$n" >> "$GITHUB_OUTPUT" | |
id: mise | |
- run: gh issue comment "$NUMBER" --body "$BODY" | |
env: | |
NUMBER: "19792" | |
BODY: | | |
mise: ${{steps.mise.outputs.count}} | |
asdf: ${{steps.asdf.outputs.count}} | |
aqua: ${{steps.aqua.outputs.count}} | |
GITHUB_TOKEN: ${{github.token}} |