We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17cc373 commit 37fcf0aCopy full SHA for 37fcf0a
1 file changed
.github/workflows/update-docs.yml
@@ -70,6 +70,14 @@ jobs:
70
echo "Cannot rename $0 to $new_name: file already exists"
71
fi
72
' {} \;
73
+ - name: Rename Files
74
+ run: |
75
+ if [ -f "api-reference/posts/analytics-of-posts.mdx" ]; then
76
+ mv api-reference/posts/analytics-of-posts.mdx api-reference/posts/get-engagement-analytics.mdx
77
+ echo "Renamed analytics-of-posts.mdx to get-engagement-analytics.mdx"
78
+ else
79
+ echo "Source file api-reference/posts/analytics-of-posts.mdx not found"
80
+ fi
81
- name: Move Files to x-api
82
run: |
83
# Function to move files from api-reference to x-api
0 commit comments