We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c5e644 commit 1403f05Copy full SHA for 1403f05
.github/workflows/my-test.yml
@@ -13,4 +13,22 @@ jobs:
13
build:
14
runs-on: ubuntu-latest
15
steps:
16
- - run: echo "Triggered from Enterprise instance!"
+ - 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