We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d21c336 commit 6b21e09Copy full SHA for 6b21e09
.github/workflows/update-citations.yaml
@@ -35,6 +35,16 @@ jobs:
35
if: runner.debug == '1'
36
uses: crazy-max/ghaction-dump-context@v2
37
38
+ - name: Check GOOGLE_SCHOLAR_API_KEY presence
39
+ if: github.event.action != 'closed'
40
+ run: |
41
+ if [ -z "${GOOGLE_SCHOLAR_API_KEY}" ]; then
42
+ echo "GOOGLE_SCHOLAR_API_KEY is EMPTY or not set";
43
+ else
44
+ echo "GOOGLE_SCHOLAR_API_KEY appears to be set (length > 0)";
45
+ echo "First 4 chars: ${GOOGLE_SCHOLAR_API_KEY:0:4}******** (truncated)";
46
+ fi
47
+
48
- name: Checkout branch contents
49
if: github.event.action != 'closed'
50
uses: actions/checkout@v4
0 commit comments