Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 488 Bytes

2_EventsSubchapter.md

File metadata and controls

18 lines (17 loc) · 488 Bytes

Events:

  1. Builds must work for events listed bellow:

    • push
    • pull request
    • release, where releases has type 'created'.

    Example code:

       on:
         push:
           branches-ignore:
             - 'dependabot/**'
         pull_request: ~
         release:
           types: [created]
         workflow_dispatch: ~