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 ad0f32d commit c628d25Copy full SHA for c628d25
.github/workflows/02-deploy-gh-pages.yml
@@ -21,6 +21,17 @@ jobs:
21
with:
22
name: build
23
path: out
24
+
25
+ - name: GitHub Actor
26
+ run: echo "The github actor is $GITHUB_ACTOR"
27
28
+ - name: Logging information
29
+ uses: actions/github-script@v6
30
+ with:
31
+ script: |
32
+ console.log('github.actor', github.actor);
33
+ console.log('github.event.pull_request_target', github.event?.pull_request_target);
34
+ console.log('github.event.pull_request.head.repo.owner.login', github.event?.pull_request.head.repo.owner.login);
35
36
- name: ➕ Bundle current gh-pages
37
uses: ./.github/actions/bundle-gh-page
0 commit comments