1
0
mirror of synced 2025-12-30 03:01:36 -05:00

Add title naming convention to reusables

This commit is contained in:
Perkles
2021-06-04 17:15:43 -03:00
parent add6e3477a
commit ff840d3606
2 changed files with 5 additions and 5 deletions

View File

@@ -1,18 +1,18 @@
##### Example using a single event
##### Example: Using a single event
```yaml
# Triggered when code is pushed to any branch in a repository
on: push
```
##### Example using a list of events
##### Example: Using a list of events
```yaml
# Triggers the workflow on push or pull request events
on: [push, pull_request]
```
##### Example using multiple events with activity types or configuration
##### Example: Using multiple events with activity types or configuration
If you need to specify activity types or configuration for an event, you must configure each event separately. You must append a colon (`:`) to all events, including events without configuration.