Skip to content

Commit 245f6b9

Browse files
authored
Merge pull request #24 from devilbox/release-0.1.33
Add debug output to configure job
2 parents f89e42c + e09e093 commit 245f6b9

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/docker-multistage-configure.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,29 @@ jobs:
217217
# Debug
218218
# ------------------------------------------------------------
219219

220+
- name: "[DEBUG] Show GitHub Context"
221+
shell: bash
222+
run: |
223+
echo 'Context | Value'
224+
echo '-------------------------------------|-----------------------------------'
225+
echo 'github.actor | ${{ github.actor }}'
226+
echo '-------------------------------------|-----------------------------------'
227+
echo 'github.repository_owner | ${{ github.repository_owner }}'
228+
echo '-------------------------------------|-----------------------------------'
229+
echo 'github.event.pull_request.user.login | ${{ github.event.pull_request.user.login }}'
230+
echo '-------------------------------------|-----------------------------------'
231+
echo 'github.event_name | ${{ github.event_name }}'
232+
echo '-------------------------------------|-----------------------------------'
233+
echo 'github.ref_name | ${{ github.ref_name }}'
234+
echo '-------------------------------------|-----------------------------------'
235+
echo 'github.head_ref | ${{ github.head_ref }}'
236+
echo '-------------------------------------|-----------------------------------'
237+
echo 'github.base_ref | ${{ github.base_ref }}'
238+
echo '-------------------------------------|-----------------------------------'
239+
echo 'github.ref_type | ${{ github.ref_type }}'
240+
echo '-------------------------------------|-----------------------------------'
241+
echo 'github.repository | ${{ github.repository }}'
242+
220243
- name: "[DEBUG] Show Workflow Inputs"
221244
shell: bash
222245
run: |

0 commit comments

Comments
 (0)