diff --git a/.github/workflows/test_issue.yml b/.github/workflows/test_issue.yml new file mode 100644 index 0000000..dcad417 --- /dev/null +++ b/.github/workflows/test_issue.yml @@ -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 }}" +