-
-
Notifications
You must be signed in to change notification settings - Fork 162
35 lines (31 loc) · 984 Bytes
/
loc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
on: [push]
name: Lines of Code
jobs:
loc_job:
runs-on: ubuntu-latest
name: Run
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create the badge
uses: shadowmoose/GHA-LoC-Badge@1.0.0
id: badge
with:
debug: true
directory: ./
badge_label: lines of code
badge_color: green
badge: ./output/badge.svg
ignore: '.github|samples|setup|README.md|LICENSE.txt'
- name: Print the output
run: |
echo "Scanned: ${{ steps.badge.outputs.counted_files }}";
echo "Line Count: ${{ steps.badge.outputs.total_lines }}";
- name: Deploy to loc branch
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./output
publish_branch: loc
github_token: ${{ secrets.GITHUB_TOKEN }}
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'