Zotero pop up seems to be working and searching, however when I have the @Author2020 (code to link to citation on Zotero) it cannot load. I hover over and it simply says "no citation found". #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Comment when opened | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- if: github.event.label.name == 'user-bailed' | |
run: | | |
gh issue edit $ISSUE --remove-label awaiting-user-feedback' | |
gh issue close $ISSUE -r 'not planned' -c 'closing for inactivity' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ISSUE: ${{ github.event.issue_comment.issue.html_url }} | |