wf dispatch

This commit is contained in:
Isaac Johnson 2026-06-27 22:27:02 -05:00
parent 963a35e836
commit 77c4d83460
1 changed files with 17 additions and 1 deletions

View File

@ -1,6 +1,22 @@
name: CICD
run-name: ${{ gitea.actor }} triggered CICD
on: [push]
on:
workflow_dispatch:
inputs:
environment:
description: 'Deployment target'
required: true
default: 'staging'
type: choice
options:
- staging
- production
schedule:
- cron: '0 2 * * *'
push:
branches:
- main
- staging
jobs:
Explore-Gitea-Actions: