Skip to content

chore: explore context #1

chore: explore context

chore: explore context #1

Workflow file for this run

name: "Update List"
on:
pull_request:
branches: [main]
issues:
types:
- labeled
workflow_dispatch:
jobs:
update-list:
if: github.event.label.name == 'new paper'
name: "Update List"
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: View issue information
run: echo "Issue body: ${{ github.event.issue.body }}"

Check failure on line 20 in .github/workflows/add_paper.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/add_paper.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
- name: View the Full Github context
run: echo "$GITHUB_CONTEXT"
env:
GITHUB_CONTEXT: ${{ toJson(github) }}