File tree 2 files changed +5
-23
lines changed
2 files changed +5
-23
lines changed Original file line number Diff line number Diff line change @@ -3,34 +3,16 @@ name: workflow
3
3
4
4
on :
5
5
pull_request :
6
- types : [labeled, synchronize]
6
+ types : [labeled, synchronize, opened ]
7
7
8
8
env :
9
9
e2e-cache-key : e2e-cache-key-${{ github.sha }}
10
10
e2e-cache-path : ${{ github.workspace }}/.e2e-cache
11
11
12
12
jobs :
13
- cache-results :
14
- name : Cache Passed Results
15
- if : always()
13
+ checkout :
16
14
runs-on : ubuntu-latest
17
15
steps :
18
- - name : Write Results to File
19
- # clear file and write new results
20
- run : |
21
- touch ${{ env.e2e-cache-path }}
22
- > ${{ env.e2e-cache-path }}
23
- echo "e2e-passed=${{ 'false' }}" >> ${{ env.e2e-cache-path }}
24
- echo "e2e-bypassed=${{ 'false' }}" >> ${{ env.e2e-cache-path }}
25
- - name : Check File exists
26
- # clear file and write new results
27
- run : |
28
- ls -al ${{ github.workspace }}
29
- - name : Cache Results
30
- uses : actions/upload-artifact@v4
31
- with :
32
- # cache by commit so new changes still need to be tested
33
- name : ${{ env.e2e-cache-key }}
34
- path : ${{ env.e2e-cache-path }}
35
- include-hidden-files : true
36
- overwrite : true
16
+ - name : Checkout
17
+ uses : actions/checkout@v4
18
+ - run : ls -al
You can’t perform that action at this time.
0 commit comments