A simple BlueSky profile labeler that can be ran on Cloudflare Workers github.com/SocksTheWolf/SimpleBSkyLabeler
cf bsky profile label bluesky cloudflare workers
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

gh actions cleaner

+27
+27
.github/workflows/clean.yml
··· 1 + # Cleans up previous GH action queues 2 + name: Clean GH Actions 3 + 4 + on: 5 + push: 6 + branches: ["main"] 7 + 8 + permissions: 9 + id-token: write 10 + actions: write 11 + 12 + concurrency: 13 + group: ${{ github.workflow }}-${{ github.ref }} 14 + cancel-in-progress: true 15 + 16 + jobs: 17 + # Clean up github job 18 + cleanup_actions: 19 + runs-on: ubuntu-latest 20 + permissions: write-all 21 + steps: 22 + - name: Cleanup Actions 23 + uses: igorjs/gh-actions-clean-workflow@v7 24 + with: 25 + token: ${{ secrets.GITHUB_TOKEN }} 26 + runs_to_keep: 1 27 + runs_older_than: 0