From 9751c3fa7abea85cda89829b39898a77c7e7279b Mon Sep 17 00:00:00 2001 From: Jorge Cotillo Date: Tue, 17 Nov 2020 10:56:27 -0800 Subject: [PATCH] Update main.yml Display gh context actor and head ref --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6a5aa50aa7..fcec3a6d3a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,6 +15,11 @@ jobs: uses: actions/setup-node@v2.1.2 with: node-version: 10.x + + - name: GitHub context (actor and head ref) + run: | + echo ${{ github.actor }} + echo ${{ github.head_ref }} - name: Install NPM modules run: npm ci