Open yeikel opened 1 year ago
Create a recipe to update the types for which a job can be triggered
types
Examples :
Input :
name: "My job" on: pull_request: types: - opened - edited - synchronize
Remove entry
on: pull_request: types: - opened - edited - - synchronize
Add entry:
on: pull_request: types: - opened - edited - synchronize + - closed
Add new type:
on: + pull_request_review: + types: [edited, dismissed] pull_request: types: - opened - edited - synchronize
As there are many possible options here, we should probably have a generic recipe that accepts a yml expression and replaces the on block with it
yml
on
Create a recipe to update the
types
for which a job can be triggeredExamples :
Input :
Remove entry
Add entry:
Add new type:
As there are many possible options here, we should probably have a generic recipe that accepts a
yml
expression and replaces theon
block with it