mirror of
https://github.com/blackboxprogramming/blackroad-disaster-recovery.git
synced 2026-03-18 06:34:11 -05:00
add standard workflows
This commit is contained in:
21
.github/workflows/core-ci.yml
vendored
Normal file
21
.github/workflows/core-ci.yml
vendored
Normal 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
11
.github/workflows/deploy.yml
vendored
Normal 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
14
.github/workflows/project-sync.yml
vendored
Normal 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 }}
|
||||
Reference in New Issue
Block a user