1
0
mirror of synced 2025-12-23 03:44:00 -05:00

Fix commonmark issues in data reusables (#37424)

This commit is contained in:
Rachael Sewell
2023-06-05 12:16:36 -07:00
committed by GitHub
parent 14c365cd55
commit ab9ec27502
119 changed files with 842 additions and 842 deletions

View File

@@ -359,9 +359,9 @@ You can use the `if` conditional to prevent a step from running unless a conditi
### Example: Using contexts
This step only runs when the event type is a `pull_request` and the event action is `unassigned`.
This step only runs when the event type is a `pull_request` and the event action is `unassigned`.
```yaml
```yaml
steps:
- name: My first step
if: {% raw %}${{ github.event_name == 'pull_request' && github.event.action == 'unassigned' }}{% endraw %}