Testing Issues Workflow #1
This file contains hidden or 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: Issues Workflow | |
| on: | |
| issues: | |
| types: opened | |
| jobs: | |
| output: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Output Event Details | |
| run: | | |
| echo "a new issue is open" | |
| echo "Issue Title: ${{ github.event.issue.title }}" | |
| echo "Issue Body: ${{ github.event.issue.body }}" | |
| echo "Issue Number ${{ github.event.issue.number }}" | |
| echo "Issue Author ${{ github.event.issue.user.login }}" | |
| echo "Issue Labels $${{ toJson(github.event.issue.labels) }}" | |