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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
- main
pull_request:

permissions: {}

# Automatically cancel in-progress actions on the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand All @@ -14,8 +16,7 @@ concurrency:
jobs:
scripts:
if: github.repository_owner == 'bombshell-dev'
uses: bombshell-dev/automation/.github/workflows/run.yml@main
secrets: inherit
uses: bombshell-dev/automation/.github/workflows/run.yml@3a8b4a38fe464b0b51d14962ae416a169517fba9 # main as of 2026-05-12
with:
commands: >
[
Expand Down
18 changes: 11 additions & 7 deletions .github/workflows/detect-agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,19 @@ on:
types: [opened]
workflow_dispatch: {}

permissions:
issues: write
pull-requests: write
permissions: {}

jobs:
detect:
if: github.event_name != 'workflow_dispatch'
uses: bombshell-dev/automation/.github/workflows/detect-agent.yml@main
if: github.repository_owner == 'bombshell-dev' && github.event_name != 'workflow_dispatch'
uses: bombshell-dev/automation/.github/workflows/detect-agent.yml@3a8b4a38fe464b0b51d14962ae416a169517fba9 # main as of 2026-05-12
permissions:
issues: write
pull-requests: write

backfill:
if: github.event_name == 'workflow_dispatch'
uses: bombshell-dev/automation/.github/workflows/detect-agent-backfill.yml@main
if: github.repository_owner == 'bombshell-dev' && github.event_name == 'workflow_dispatch'
uses: bombshell-dev/automation/.github/workflows/detect-agent-backfill.yml@3a8b4a38fe464b0b51d14962ae416a169517fba9 # main as of 2026-05-12
permissions:
issues: write
pull-requests: write
8 changes: 6 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ on:
branches:
- main

permissions: {}

jobs:
format:
if: github.repository_owner == 'bombshell-dev'
uses: bombshell-dev/automation/.github/workflows/format.yml@main
uses: bombshell-dev/automation/.github/workflows/format.yml@3a8b4a38fe464b0b51d14962ae416a169517fba9 # main as of 2026-05-12
permissions:
contents: write
pull-requests: write
secrets: inherit
secrets:
BOT_APP_ID: ${{ secrets.BOT_APP_ID }}
BOT_PRIVATE_KEY: ${{ secrets.BOT_PRIVATE_KEY }}
14 changes: 10 additions & 4 deletions .github/workflows/issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@ on:
issues:
types: [opened, edited, labeled, reopened]

permissions: {}

jobs:
backlog:
if: github.event.action == 'edited' || github.event.action == 'labeled'
uses: bombshell-dev/automation/.github/workflows/move-issue-to-backlog.yml@main
secrets: inherit
uses: bombshell-dev/automation/.github/workflows/move-issue-to-backlog.yml@3a8b4a38fe464b0b51d14962ae416a169517fba9 # main as of 2026-05-12
secrets:
BOT_APP_ID: ${{ secrets.BOT_APP_ID }}
BOT_PRIVATE_KEY: ${{ secrets.BOT_PRIVATE_KEY }}

project:
if: github.event.action == 'opened' || github.event.action == 'reopened'
uses: bombshell-dev/automation/.github/workflows/add-issue-to-project.yml@main
secrets: inherit
uses: bombshell-dev/automation/.github/workflows/add-issue-to-project.yml@3a8b4a38fe464b0b51d14962ae416a169517fba9 # main as of 2026-05-12
secrets:
BOT_APP_ID: ${{ secrets.BOT_APP_ID }}
BOT_PRIVATE_KEY: ${{ secrets.BOT_PRIVATE_KEY }}
6 changes: 4 additions & 2 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@ on:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:

permissions: {}

jobs:
preview:
if: github.repository_owner == 'bombshell-dev'
uses: bombshell-dev/automation/.github/workflows/preview.yml@main
permissions:
uses: bombshell-dev/automation/.github/workflows/preview.yml@3a8b4a38fe464b0b51d14962ae416a169517fba9 # main as of 2026-05-12
permissions:
contents: write
pull-requests: write
id-token: write
Expand Down
17 changes: 10 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ on:
branches: [main, v0]
workflow_dispatch:

permissions:
id-token: write
contents: write
pull-requests: write
packages: write
permissions: {}

jobs:
publish:
if: github.repository_owner == 'bombshell-dev'
uses: bombshell-dev/automation/.github/workflows/publish.yml@main
secrets: inherit
uses: bombshell-dev/automation/.github/workflows/publish.yml@3a8b4a38fe464b0b51d14962ae416a169517fba9 # main as of 2026-05-12
permissions:
id-token: write
contents: write
pull-requests: write
packages: write
secrets:
BOT_APP_ID: ${{ secrets.BOT_APP_ID }}
BOT_PRIVATE_KEY: ${{ secrets.BOT_PRIVATE_KEY }}
9 changes: 4 additions & 5 deletions .github/workflows/require-allow-edits.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
name: Require Allow Edits
name: Require "Allow Edits"

on: [pull_request_target]

permissions:
contents: read
permissions: {}

jobs:
_:
permissions:
pull-requests: read

name: "Require Allow Edits"
name: "Require \"Allow Edits\""

runs-on: ubuntu-latest

steps:
- uses: ljharb/require-allow-edits@v2
- uses: ljharb/require-allow-edits@be4a9d13001dfa5bfc10af68313bad753d7bdc6a # v2
Loading