-
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Description
Run tasks conditionally based on environment or file conditions.
Proposed Syntax
deploy:
if: \${{ env.CI == 'true' }}
cmd: ./deploy.sh
test:
when:
- file_exists: package.json
cmd: npm testAcceptance Criteria
- Support environment variable conditions
- Support file existence checks
- Support expression syntax
- Clear skip message when condition not met