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 c628d25 commit 8374ed2Copy full SHA for 8374ed2
.github/workflows/00-init.yml
@@ -20,3 +20,14 @@ jobs:
20
- name: 📥 Download deps default-npm-cache
21
if: steps.npm-cache.outputs.cache-hit != 'true'
22
uses: bahmutov/npm-install@v1
23
+
24
+ - name: GitHub Actor
25
+ run: echo "The github actor is $GITHUB_ACTOR"
26
27
+ - name: Logging information
28
+ uses: actions/github-script@v6
29
+ with:
30
+ script: |
31
+ console.log('github.actor', github.actor);
32
+ console.log('github.event.pull_request_target', github.event?.pull_request_target);
33
+ console.log('github.event.pull_request.head.repo.owner.login', github.event?.pull_request.head.repo.owner.login);
0 commit comments