add standard workflows

This commit is contained in:
Alexa Louise
2026-01-24 16:49:57 -06:00
parent b2e1c1fcea
commit 8e00d02604
3 changed files with 46 additions and 0 deletions

21
.github/workflows/core-ci.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: CORE CI
on:
pull_request:
branches: [ main, master ]
push:
branches: [ main, master ]
jobs:
guard:
runs-on: ubuntu-latest
steps:
- name: Guardrail
run: echo "CORE repo guardrail active"
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint placeholder
run: echo "Add lint/test here"

11
.github/workflows/deploy.yml vendored Normal file
View File

@@ -0,0 +1,11 @@
name: Deploy
on:
push:
branches: [ main ]
jobs:
deploy:
uses: blackboxprogramming/blackroad-deploy/.github/workflows/cloudflare-deploy.yml@main
with:
project: blackroad-io

14
.github/workflows/project-sync.yml vendored Normal file
View File

@@ -0,0 +1,14 @@
name: Project Sync
on:
pull_request:
types: [opened, reopened]
jobs:
add-to-project:
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v1
with:
project-url: https://github.com/users/blackboxprogramming/projects/8
github-token: ${{ secrets.GITHUB_TOKEN }}