Aggiornamento FRITZ (GHA) 202408170647 del 17-08-2024 #273
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: NoAds Commit Counter | |
on: | |
push: | |
paths: | |
- 'fritz/fritz_blacklist.txt' | |
- 'experimental.txt' | |
workflow_dispatch: | |
jobs: | |
count-commits: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Set Timezone | |
uses: szenius/[email protected] | |
with: | |
timezoneLinux: "Europe/Rome" | |
- name: Set date and time | |
run: sh ./sh/datetime.sh | |
- name: Count Commits | |
run: | | |
COMMIT_COUNT=$(git rev-list --count HEAD) | |
echo "Commit count: $COMMIT_COUNT" | |
echo $COMMIT_COUNT > vcheck/check_gh.txt | |
- name: Commit updated counter | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GWall[bot]" | |
git add vcheck/check_gh.txt | |
git commit -m "Commit Counter del $lastmodified" -a | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |