Skip to content

Commit 2456d17

Browse files
Merge pull request #3 from tarungunampalli1/checkout
test pr
2 parents f8f5ef2 + 62dbb0f commit 2456d17

File tree

2 files changed

+5
-23
lines changed

2 files changed

+5
-23
lines changed

.github/workflows/workflow.yml

+5-23
Original file line numberDiff line numberDiff line change
@@ -3,34 +3,16 @@ name: workflow
33

44
on:
55
pull_request:
6-
types: [labeled, synchronize]
6+
types: [labeled, synchronize, opened]
77

88
env:
99
e2e-cache-key: e2e-cache-key-${{ github.sha }}
1010
e2e-cache-path: ${{ github.workspace }}/.e2e-cache
1111

1212
jobs:
13-
cache-results:
14-
name: Cache Passed Results
15-
if: always()
13+
checkout:
1614
runs-on: ubuntu-latest
1715
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

test.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)