Skip to content

Commit 6761a87

Browse files
committed
Fix syntax error
1 parent c62dd9c commit 6761a87

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
schedule:
55
# At the end of every day
66
- cron: "0 0 * * *"
7-
pull_request:
7+
# pull_request:
88

99
env:
1010
RANGE_SIZE: 2

.github/workflows/vm-replay.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
outputs:
1616
blocks: ${{ steps.parse-blocks.outputs.blocks_list }}
1717
steps:
18-
name: Parse blocks file
19-
id: parse-blocks
20-
run: |
21-
content=`cat ./replay-blocks.txt`
22-
echo "::set-output name=blocks_list::$(jq 'split(",")' -Rc <(echo $content))"
18+
- name: Parse blocks file
19+
id: parse-blocks
20+
run: |
21+
content=`cat ./replay-blocks.txt`
22+
echo "::set-output name=blocks_list::$(jq 'split(",")' -Rc <(echo $content))"
2323
2424
2525
run:

0 commit comments

Comments
 (0)