sample/.forgejo/workflows/demo.yml
Chris Thompson 05ecf66d9e
All checks were successful
/ test (push) Successful in 2s
/ test2 (push) Successful in 2s
Add a condition to second job
2025-05-22 17:06:12 -04:00

16 lines
241 B
YAML

on:
push:
branches:
- main
jobs:
test:
runs-on: docker
steps:
- run: echo All Good, REALLY
test2:
needs: test
if: vars.DEPLOY_TEST == 1
runs-on: docker
steps:
- run: echo All Good, REALLY