[READ-ONLY] Mirror of https://github.com/bombshell-dev/tools. Internal CLI to standardize tooling across all Bombshell projects
0

Configure Feed

Select the types of activity you want to include in your feed.

chore(ci): add workflows

Nate Moore (Mar 30, 2025, 11:09 PM -0500) a9157e3f 488b2a53

+26 -1
+1 -1
.github/workflows/format.yaml
··· 7 7 - main 8 8 9 9 jobs: 10 - prettier: 10 + format: 11 11 if: github.repository_owner == 'bombshell-dev' 12 12 uses: bombshell-dev/automation/.github/workflows/format.yml@main 13 13 secrets: inherit
+11
.github/workflows/preview.yml
··· 1 + name: Preview 2 + 3 + on: [push, pull_request] 4 + 5 + jobs: 6 + format: 7 + if: github.repository_owner == 'bombshell-dev' 8 + uses: bombshell-dev/automation/.github/workflows/preview.yml@main 9 + secrets: inherit 10 + with: 11 + publish: '.'
+14
.github/workflows/publish.yaml
··· 1 + name: CI 2 + 3 + on: 4 + workflow_dispatch: 5 + push: 6 + branches: 7 + - main 8 + 9 + jobs: 10 + ci: 11 + if: github.repository_owner == 'bombshell-dev' 12 + uses: bombshell-dev/automation/.github/workflows/publish.yml@main 13 + secrets: inherit 14 +