Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/feature-discovery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,16 +104,18 @@ jobs:

- name: Pre-Discovery Verification
id: pre-verification
env:
GITHUB_TOKEN: ${{ secrets.CLAUDE_ISSUE_TOKEN }}
run: |
echo "🔍 Pre-discovery verification checks..."

# Check GitHub token permissions
# Check GitHub token permissions (skip auth status check)
echo "Verifying GitHub token permissions..."
gh auth status
echo "✅ GitHub token configured"

# Test issue creation capability
echo "Testing GitHub CLI issue operations..."
gh issue list --limit 1 > /dev/null
gh issue list --limit 1 > /dev/null || echo "⚠️ Issue operations may fail"

# Verify MCP server accessibility
echo "Testing Docker availability for Terraform MCP server..."
Expand Down Expand Up @@ -381,6 +383,8 @@ jobs:
- name: Create GitHub Issues from Structured Output
id: create-issues-from-json
if: steps.claude-discovery.conclusion == 'success' && inputs.dry_run != true
env:
GITHUB_TOKEN: ${{ secrets.CLAUDE_ISSUE_TOKEN }}
run: |
set -euo pipefail

Expand Down
Loading