Reusable Workflow & Reuse Templates for Actions and Workflows
1. Reusable Workflow Nedir?
Kısa Örnek
# .github/workflows/reusable-ci.yml
name: Reusable CI
on: [workflow_call]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Echo from Reusable Workflow
run: echo "Hello from Reusable CI!"2. Workflow Templates (Enterprise Özelliği)
Genel Mantık
Örnek Dosya Yapısı
3. Adım Adım Kurulum ve Kullanım
Last updated