Skip to content

Instantly share code, notes, and snippets.

@weibeld
Created August 1, 2020 10:05
Show Gist options
  • Save weibeld/d14193cbeff94102025a2cc1a30add37 to your computer and use it in GitHub Desktop.
Save weibeld/d14193cbeff94102025a2cc1a30add37 to your computer and use it in GitHub Desktop.
GitHub Actions example workflow — Conditionals 5
name: conditionals-5
on: workflow_dispatch
jobs:
my-job:
runs-on: ubuntu-latest
steps:
- if: true
name: step-1
run: echo "Step 1"
- if: 1 == 1
name: step-2
run: echo "Step 2"
- if: startsWith('foo', 'f')
name: step-3
run: echo "Step 3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment