Files
containers/.github/workflows/fmulero-test.yml
Fran Mulero 99899e8ab4 Debug get issue output
Signed-off-by: Fran Mulero <fmulero@vmware.com>
2022-09-14 12:16:36 +02:00

27 lines
563 B
YAML

name: '[Support] Debug events'
on:
project_card:
types:
- moved
jobs:
debugJob:
name: Print event
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
echo "$GITHUB_CONTEXT"
- name: Get Issue
id: getissue
uses: actions-cool/issues-helper@v3
with:
actions: get-issue
- name: Dump getissue outputs
env:
ISSUE_OUTPUTS: ${{ toJson(steps.getissue.outputs) }}
run: |
echo "$ISSUE_OUTPUTS"