Skip to content

doc: list of GitHub Actions scheduled workflows #7

doc: list of GitHub Actions scheduled workflows

doc: list of GitHub Actions scheduled workflows #7

Workflow file for this run

name: multiline if
on:
workflow_dispatch:
push:
branches: ["main"]
jobs:
push:
if: >-
github.event_name == 'push' || github.event.forced == false
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- run: echo "push"
workflow_dispatch:
if: >-
github.event_name == 'workflow_dispatch'
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- run: echo "workflow_dispatch"