Skip to content

Commit

Permalink
chore: explore context
Browse files Browse the repository at this point in the history
  • Loading branch information
SauravMaheshkar committed Sep 2, 2024
1 parent 7d00055 commit c5068aa
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/add_paper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
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 }}"
- name: View the Full Github context
run: echo "$GITHUB_CONTEXT"
env:
GITHUB_CONTEXT: ${{ toJson(github) }}

0 comments on commit c5068aa

Please sign in to comment.