DistroHopper/.github/workflows/add-stars.yml
2026-02-19 23:29:29 +01:00

24 lines
630 B
YAML

name: Add Stars
on: [watch]
permissions:
contents: write
jobs:
addstars:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: add watcher to stars.md
run: |
echo -e "\nWe got a :star: from [@${{github.actor}}](https://github.com/${{github.actor}})" >> stars.md
- name: Commit changes
# 65bf468d1d03f013c2caa86f00af91dd50b7e43f v4
# https://github.com/elstudio/actions-js-build/tags
uses: elstudio/actions-js-build/commit@65bf468d1d03f013c2caa86f00af91dd50b7e43f
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUSH_BRANCH: 'main'