Skip to content

Testing Issues Workflow #1

Testing Issues Workflow

Testing Issues Workflow #1

Workflow file for this run

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) }}"