Skip to content

Commit ccfc782

Browse files
committed
chore: rename dashboard branch file name
1 parent e3f20d7 commit ccfc782

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/update_dashboard.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,17 +67,17 @@ jobs:
6767
git checkout -b dashboard
6868
fi
6969
if [ -f ../../dashboard.md.tmp ]; then
70-
cp ../../dashboard.md.tmp dashboard.md
70+
cp ../../dashboard.md.tmp README.md
7171
else
72-
echo "No dashboard.md.tmp found, creating empty dashboard.md"
73-
touch dashboard.md
72+
echo "No dashboard.md.tmp found, creating empty README.md"
73+
touch README.md
7474
fi
7575
76-
- name: Commit and push dashboard.md
76+
- name: Commit and push README.md
7777
run: |
7878
cd dashboard_repo
7979
git config user.email "actions@github.com"
8080
git config user.name "GitHub Actions"
81-
git add dashboard.md
82-
git commit -m "Update dashboard.md [skip ci]" || echo "No changes to commit"
81+
git add README.md
82+
git commit -m "Update README.md [skip ci]" || echo "No changes to commit"
8383
git push --set-upstream origin dashboard

0 commit comments

Comments
 (0)