We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70712e7 commit aab6249Copy full SHA for aab6249
.github/workflows/update-readme.yml
@@ -15,12 +15,25 @@ jobs:
15
- uses: actions/checkout@v3
16
with:
17
token: ${{ secrets.GITHUB_TOKEN }}
18
+
19
- name: Set up Python
20
uses: actions/setup-python@v4
21
22
python-version: "3.x"
23
24
+ - name: List .java files (debug)
25
+ run: |
26
+ echo "Listing solution files:"
27
+ find Easy Medium Hard -type f -name '*.java' 2>/dev/null | sort || true
28
+ echo "Total:"
29
+ find Easy Medium Hard -type f -name '*.java' 2>/dev/null | wc -l || true
30
31
- name: Run update script
32
run: python .github/scripts/update_readme.py
33
34
+ - name: Show updated README (debug)
35
+ run: cat README.md
36
37
- name: Commit changes
38
run: |
39
git config --global user.name "github-actions[bot]"
0 commit comments