We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdc9fe0 commit 6d209b4Copy full SHA for 6d209b4
.github/workflows/osiris-subpar-coverage.yml
@@ -26,6 +26,16 @@ jobs:
26
- name: Clone Docs Java
27
run: git clone --branch DOP-5399 https://github.com/mongodb/docs-java.git cloned-docs-java-repo
28
29
+ - name: Debug GitHub Secrets
30
+ run: |
31
+ echo "Checking if PERSONAL_ACCESS_TOKEN is set..."
32
+ if [ -z "${{ secrets.PERSONAL_ACCESS_TOKEN }}" ]; then
33
+ echo "❌ PERSONAL_ACCESS_TOKEN is missing or not available in this environment."
34
+ exit 1
35
+ else
36
+ echo "✅ PERSONAL_ACCESS_TOKEN is set."
37
+ fi
38
+
39
- name: Clone Osiris
40
run: git clone https://x-access-token:${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/10gen/osiris.git cloned-osiris-repo
41
0 commit comments