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 e38a5d3 commit 71295e6Copy full SHA for 71295e6
.github/workflows/bluesky-post.yml
@@ -41,12 +41,17 @@ jobs:
41
42
# Parse markdown links and calculate facets using Python
43
echo "Parsing markdown and calculating facets..."
44
- export INPUT_TEXT="${{ inputs.post_text }}"
+
45
+ # Write input to temp file to avoid shell escaping issues
46
+ cat > /tmp/post_input.txt << 'INPUTEOF'
47
+ ${{ inputs.post_text }}
48
+ INPUTEOF
49
50
RESULT=$(python3 << 'PYEOF'
- import json, re, os
51
+ import json, re
52
- input_text = os.environ['INPUT_TEXT']
53
+ with open('/tmp/post_input.txt', 'r') as f:
54
+ input_text = f.read().strip()
55
56
# Parse markdown links [text](url) and build facets
57
facets = []
.gitignore
@@ -0,0 +1,2 @@
1
2
+CLAUDE.local.md
0 commit comments