mirror of
https://github.com/bitnami/containers.git
synced 2026-03-12 06:48:14 +08:00
27 lines
563 B
YAML
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"
|