We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c62dd9c commit 6761a87Copy full SHA for 6761a87
.github/workflows/daily.yml
@@ -4,7 +4,7 @@ on:
4
schedule:
5
# At the end of every day
6
- cron: "0 0 * * *"
7
- pull_request:
+ # pull_request:
8
9
env:
10
RANGE_SIZE: 2
.github/workflows/vm-replay.yml
@@ -15,11 +15,11 @@ jobs:
15
outputs:
16
blocks: ${{ steps.parse-blocks.outputs.blocks_list }}
17
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))"
+ - name: Parse blocks file
+ id: parse-blocks
+ run: |
+ content=`cat ./replay-blocks.txt`
+ echo "::set-output name=blocks_list::$(jq 'split(",")' -Rc <(echo $content))"
23
24
25
run:
0 commit comments