Fixed for NewsInterests
functions
#850
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: Badge | |
on: | |
push: | |
branches: | |
- master | |
# tags: | |
# - '*.*.*' | |
pull_request: | |
branches: | |
- master | |
jobs: | |
update-badges: | |
name: Update Badges | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@main | |
- name: Get the Numbers | |
run: | | |
$a = 0 | |
Get-ChildItem -Path src -File -Recurse | ForEach-Object -Process { | |
$a += ((Get-Content -Path $_.FullName).Count | Measure-Object -Sum).Sum | |
} | |
$Summary = "{0:N1}k" -f ($a/1000) | |
Write-Verbose -Message $Summary -Verbose | |
echo "CODE_LINES=$Summary" >> $env:GITHUB_ENV | |
- name: Writing to Gist | |
uses: schneegans/dynamic-badges-action@master | |
with: | |
auth: ${{ secrets.GIST_SophiaScript }} | |
gistID: 9852d6b9569a91bf69ceba8a94cc97f4 | |
filename: SophiaScript.json | |
label: Lines of Code | |
message: ${{ env.CODE_LINES }} | |
namedLogo: PowerShell | |
color: brightgreen |