mirror of
https://github.com/iflytek/skillhub.git
synced 2026-08-28 11:25:00 +00:00
* chore: add GitHub-reward form, scripts & actions * fix: Deno system permissions in GitHub actions * fix: 3 detail bugs
43 lines
1.4 KiB
YAML
43 lines
1.4 KiB
YAML
name: Statistic Member Reward
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 1 * *" # Run at 00:00 on the first day of every month
|
|
|
|
jobs:
|
|
statistic-member-reward:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
fetch-depth: 0
|
|
fetch-tags: true
|
|
|
|
- name: Check for new commits since last statistic
|
|
run: |
|
|
last_tag=$(git describe --tags --abbrev=0 --match "statistic-*" || echo "")
|
|
|
|
if [ -z "$last_tag" ]; then
|
|
echo "No previous statistic tags found."
|
|
echo "NEW_COMMITS=true" >> $GITHUB_ENV
|
|
else
|
|
new_commits=$(git log $last_tag..HEAD --oneline)
|
|
if [ -z "$new_commits" ]; then
|
|
echo "No new commits since last statistic tag."
|
|
echo "NEW_COMMITS=false" >> $GITHUB_ENV
|
|
else
|
|
echo "New commits found."
|
|
echo "NEW_COMMITS=true" >> $GITHUB_ENV
|
|
fi
|
|
fi
|
|
- uses: denoland/setup-deno@667a34cdef165d8d2b2e98dde39547c9daac7282 # v2.0.4
|
|
if: env.NEW_COMMITS == 'true'
|
|
with:
|
|
deno-version: v2.x
|
|
|
|
- name: Statistic rewards
|
|
if: env.NEW_COMMITS == 'true'
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|
|
run: deno --allow-run --allow-sys --allow-env --allow-read --allow-net=api.github.com .github/scripts/count-reward.ts
|