Skip to content

Commit 1403f05

Browse files
committed
test
1 parent 7c5e644 commit 1403f05

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/workflows/my-test.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,22 @@ jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- run: echo "Triggered from Enterprise instance!"
16+
- name: Checkout repo from GitHub Tools SAP
17+
uses: actions/checkout@v4
18+
with:
19+
repository: SapMachine/DUMMY
20+
token: ${{ secrets.GHE_PAT }}
21+
github-server-url: https://github.tools.sap
22+
path: ghpagesrepo
23+
24+
# Step 3: Show current directory
25+
- name: Print working directory
26+
run: pwd
27+
28+
# Step 4: List directory contents (root)
29+
- name: List all files in root
30+
run: ls -la
31+
32+
# Step 5: List directory contents of enterprise repo
33+
- name: List all files in enterprise repo
34+
run: ls -la ghpagesrepo

0 commit comments

Comments
 (0)