Skip to content

Commit 7c3bdcb

Browse files
BekahHWContinue
andcommitted
Remove GitHub Actions section from Atlassian cookbook
- Removed entire GitHub Actions automation section - Removed example workflows (sprint summary and doc sync) - Updated What You've Built section to remove automation reference - Updated Next Steps to remove GitHub Actions setup step - Simplified focus to interactive and headless CLI usage Generated with [Continue](https://continue.dev) Co-Authored-By: Continue <[email protected]>
1 parent 8b184c8 commit 7c3bdcb

File tree

1 file changed

+2
-107
lines changed

1 file changed

+2
-107
lines changed

docs/guides/atlassian-mcp-continue-cookbook.mdx

Lines changed: 2 additions & 107 deletions
Original file line numberDiff line numberDiff line change
@@ -408,109 +408,6 @@ Integrate actions across Jira, Confluence, and Compass for powerful cross-produc
408408

409409
---
410410

411-
## Automate with GitHub Actions
412-
413-
Run headless commands on a schedule or in PRs to keep teams informed.
414-
415-
### Add GitHub Secrets
416-
417-
Repository Settings → Secrets and variables → Actions:
418-
419-
- `CONTINUE_API_KEY`: From [hub.continue.dev/settings/api-keys](https://hub.continue.dev/settings/api-keys)
420-
421-
<Note>
422-
No Atlassian API keys needed! The Atlassian MCP uses OAuth, which is handled during the initial setup.
423-
</Note>
424-
425-
### Example Workflow: Sprint Summary
426-
427-
Create `.github/workflows/atlassian-sprint-summary.yml`:
428-
429-
```yaml
430-
name: Weekly Sprint Summary
431-
432-
on:
433-
schedule:
434-
- cron: "0 9 * * 1" # Mondays 9:00 AM UTC
435-
workflow_dispatch:
436-
437-
jobs:
438-
sprint-summary:
439-
runs-on: ubuntu-latest
440-
env:
441-
CONTINUE_API_KEY: ${{ secrets.CONTINUE_API_KEY }}
442-
steps:
443-
- uses: actions/checkout@v4
444-
- uses: actions/setup-node@v4
445-
with:
446-
node-version: "18"
447-
- name: Install Continue CLI
448-
run: npm i -g @continuedev/cli
449-
450-
- name: Generate Sprint Report
451-
run: |
452-
cn --agent continuedev/atlassian-continuous-ai-jira-agent \
453-
"Summarize the current sprint: completed issues, in-progress work, blockers. Create a Confluence page in the Sprint Reports space." \
454-
> sprint_summary.txt
455-
456-
- name: Save Summary Artifact
457-
uses: actions/upload-artifact@v3
458-
with:
459-
name: sprint-summary
460-
path: sprint_summary.txt
461-
```
462-
463-
### Example Workflow: Documentation Sync
464-
465-
Create `.github/workflows/doc-sync-check.yml`:
466-
467-
```yaml
468-
name: Documentation Sync Check
469-
470-
on:
471-
pull_request:
472-
types: [opened, synchronize]
473-
paths:
474-
- 'src/**'
475-
- 'docs/**'
476-
477-
jobs:
478-
doc-check:
479-
runs-on: ubuntu-latest
480-
env:
481-
CONTINUE_API_KEY: ${{ secrets.CONTINUE_API_KEY }}
482-
steps:
483-
- uses: actions/checkout@v4
484-
- uses: actions/setup-node@v4
485-
with:
486-
node-version: "18"
487-
- name: Install Continue CLI
488-
run: npm i -g @continuedev/cli
489-
490-
- name: Check for Related Confluence Pages
491-
env:
492-
PR_NUMBER: ${{ github.event.pull_request.number }}
493-
run: |
494-
REPORT=$(cn --agent continuedev/atlassian-continuous-ai-confluence-agent \
495-
"Search Confluence for pages related to the files changed in PR #${PR_NUMBER}. Check if documentation needs updating.")
496-
echo "REPORT<<EOF" >> $GITHUB_ENV
497-
echo "$REPORT" >> $GITHUB_ENV
498-
echo "EOF" >> $GITHUB_ENV
499-
500-
- name: Comment on PR
501-
uses: actions/github-script@v7
502-
with:
503-
script: |
504-
github.rest.issues.createComment({
505-
issue_number: context.issue.number,
506-
owner: context.repo.owner,
507-
repo: context.repo.repo,
508-
body: `## 📚 Documentation Sync Check\n\n${process.env.REPORT}`
509-
})
510-
```
511-
512-
---
513-
514411
## Troubleshooting
515412

516413
<AccordionGroup>
@@ -562,7 +459,6 @@ After completing this guide, you have a complete **AI-powered Atlassian workflow
562459
- ✅ Uses natural language — Simple prompts for complex Atlassian operations
563460
- ✅ Spans multiple products — Seamlessly works across Jira, Confluence, and Compass
564461
- ✅ Respects permissions — Secure OAuth-based access with existing role enforcement
565-
- ✅ Automates workflows — Scheduled reports and PR-triggered documentation checks
566462
- ✅ Runs headlessly — Integrate into CI/CD pipelines and automation scripts
567463

568464
<Card title="Continuous AI" icon="rocket">
@@ -577,9 +473,8 @@ After completing this guide, you have a complete **AI-powered Atlassian workflow
577473
1. **Explore your projects** - Try the Jira search and triage prompts
578474
2. **Organize documentation** - Use Confluence workflows to summarize and create pages
579475
3. **Map your services** - Query Compass for service dependencies
580-
4. **Set up automation** - Add GitHub Actions workflows for recurring tasks
581-
5. **Customize prompts** - Tailor workflows to your team's specific needs
582-
6. **Monitor usage** - Track how AI improves your Atlassian workflows
476+
4. **Customize prompts** - Tailor workflows to your team's specific needs
477+
5. **Monitor usage** - Track how AI improves your Atlassian workflows
583478

584479
## Additional Resources
585480

0 commit comments

Comments
 (0)