You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
core.setFailed(`Failed to create docs issue: ${error.message}`);
87
+
// Check if error is due to missing token permissions
88
+
if (error.status === 403 || error.status === 401) {
89
+
throw new Error(`Failed to create docs issue due to insufficient permissions. Please ensure DOCS_ISSUE_TOKEN secret is configured with 'repo' scope. Error: ${error.message}`);
90
+
}
91
+
throw new Error(`Failed to create docs issue: ${error.message}`);
0 commit comments