diff --git a/.github/workflows/print-info.yml b/.github/workflows/print-info.yml new file mode 100644 index 0000000000..1139242f2c --- /dev/null +++ b/.github/workflows/print-info.yml @@ -0,0 +1,16 @@ +name: print-info + +on: + workflow_dispatch: + pull_request_target: + types: [opened] + +jobs: + add-review-checklist: + runs-on: ubuntu-latest + steps: + - name: Print event details + run: | + echo "Event Name: ${{ github.event_name }}" + echo "Action: ${{ github.event.action }}" + echo "PR Title: ${{ github.event.pull_request.title }}" \ No newline at end of file