Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# managed-by: talieisin-org-bootstrap v2
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
groups:
minor-and-patch:
applies-to: version-updates
patterns: ["*"]
update-types: ["minor", "patch"]
security:
applies-to: security-updates
patterns: ["*"]
13 changes: 13 additions & 0 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# managed-by: talieisin-org-bootstrap v1
name: Auto-merge
on: pull_request

permissions:
contents: write
pull-requests: write

jobs:
auto-merge:
if: github.event.pull_request.user.login == 'dependabot[bot]'
uses: Talieisin/.github/.github/workflows/auto-merge.yml@main
secrets: inherit
29 changes: 29 additions & 0 deletions .github/workflows/dependabot-agent.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# managed-by: talieisin-org-bootstrap v2
# Fires when the org dispatcher labels a major Dependabot PR `ai-upgrade`.
# All logic lives in Talieisin/.github — see its docs/ai-automation.md.
name: AI upgrade
on:
pull_request:
types: [labeled]

permissions:
contents: read
pull-requests: write
checks: read
issues: write
actions: read

jobs:
upgrade:
if: github.event.label.name == 'ai-upgrade'
uses: Talieisin/.github/.github/workflows/dependabot-upgrade.yml@main
with:
setup: none
secrets:
CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
COPILOT_REVIEW_PAT: ${{ secrets.COPILOT_REVIEW_PAT }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
TALIEISIN_AUTOMATION_APP_ID: ${{ secrets.TALIEISIN_AUTOMATION_APP_ID }}
TALIEISIN_AUTOMATION_APP_PRIVATE_KEY: ${{ secrets.TALIEISIN_AUTOMATION_APP_PRIVATE_KEY }}
TALIEISIN_TRIGGER_APP_ID: ${{ secrets.TALIEISIN_TRIGGER_APP_ID }}
TALIEISIN_TRIGGER_APP_PRIVATE_KEY: ${{ secrets.TALIEISIN_TRIGGER_APP_PRIVATE_KEY }}