Skip to content

Commit

Permalink
Add issue event test
Browse files Browse the repository at this point in the history
Signed-off-by: Choonho Son <choonhoson@megazone.com>
  • Loading branch information
Choonho Son committed Nov 2, 2023
1 parent 1571328 commit f0504cb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test Issue

on:
issues:
types: [opened]

jobs:
build:
environment: goldminer
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2

- name: Read Issue information
run: |
echo "Issue title: ${{ github.event.issue.title }}"
echo "Issue body: ${{ github.event.issue.body }}"

0 comments on commit f0504cb

Please sign in to comment.