[automated] Update metadata from Papers with Code #123
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}" | |
echo "Original PR Body: ${{ github.event.pull_request.body }}" |