diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..274ae76 --- /dev/null +++ b/.github/dependabot.yml @@ -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: ["*"] diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml new file mode 100644 index 0000000..f1ee0bf --- /dev/null +++ b/.github/workflows/auto-merge.yml @@ -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 diff --git a/.github/workflows/dependabot-agent.yml b/.github/workflows/dependabot-agent.yml new file mode 100644 index 0000000..fdd0913 --- /dev/null +++ b/.github/workflows/dependabot-agent.yml @@ -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 }}