Skip to content

Commit cf38ee4

Browse files
authored
workflow: wrap in quotes to avoid parse errors
1 parent 2ab3a0b commit cf38ee4

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/sync-files.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: sync: update scripts from source if change found
1+
name: "sync: update scripts from source if change found"
22

33
on:
44
schedule:
@@ -10,14 +10,14 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- name: Checkout repository
13+
- name: "chore: checkout repository"
1414
uses: actions/checkout@v4
1515

1616
# hold the list of updated files
17-
- name: Initialize updated files list
17+
- name: "chore: initialize updated files list"
1818
run: echo "" > /tmp/updated_files.txt
1919

20-
- name: sync: update mpv scripts
20+
- name: "sync: update mpv scripts"
2121
run: |
2222
sync_file() {
2323
local url="$1"
@@ -47,12 +47,12 @@ jobs:
4747
"https://raw.githubusercontent.com/po5/thumbfast/master/thumbfast.lua" \
4848
"scripts/thumbfast.lua"
4949
50-
- name: chore: debug updated files
50+
- name: "chore: debug updated files"
5151
run: |
5252
echo "Updated files:"
5353
sed '/^$/d' /tmp/updated_files.txt || echo "No files were updated"
5454
55-
- name: chore: commit and push changes
55+
- name: "chore: commit and push changes"
5656
run: |
5757
git config --local user.email "github-actions[bot]@users.noreply.github.com"
5858
git config --local user.name "GitHub Actions"

0 commit comments

Comments
 (0)