Skip to content
Snippets Groups Projects
issue.yml 596 B
Newer Older
Ciro Santilli's avatar
Ciro Santilli committed
name: Issue
on:
  issues:
    types: [opened]
jobs:
  Issue:
    runs-on: ubuntu-20.04
    steps:
      - run: echo "github.event_name ${{ github.event_name }}"
      - run: echo "github.ref ${{ github.ref }}"
      - run: echo "github.repository ${{ github.repository }}"
      - run: echo "runner.os ${{ runner.os }}"
Ciro Santilli's avatar
Ciro Santilli committed
      - run: echo "github.workspace ${{ github.workspace }}"
      - name: Check out repository code
        uses: actions/checkout@v2
      - run: ls "${{ github.workspace }}"
      - run: "${{ github.workspace }}/action.py"
      - run: echo "job.status ${{ job.status }}."