chore(agents): per-category generators must prune their output and gu… #194
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: BadgeSort | |
| "on": | |
| push: | |
| branches: [main] | |
| paths: | |
| - "**/*.md" | |
| - ".github/workflows/badgesort.yml" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| badgesort: | |
| name: BadgeSort | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| persist-credentials: false | |
| - name: Generate badges | |
| # kics-scan ignore-line | |
| uses: docker://ghcr.io/chipwolf/badgesort@sha256:ca3fc7ec29a47e96c567ced582b106e3096b6f3c580d56bb63a7ac3006f5a746 | |
| with: | |
| slugs: >- | |
| bitwarden | |
| docker | |
| git | |
| githubactions | |
| homebrew | |
| linux | |
| macos | |
| neovim | |
| python | |
| tmux | |
| wezterm | |
| zsh | |
| style: for-the-badge | |
| sort: hilbert | |
| format: markdown | |
| output: README.md | |
| - name: Commit badge updates | |
| uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7.1.0 | |
| with: | |
| commit_message: "chore: update badges" | |
| file_pattern: README.md |