docs: revert unexpected change

This commit is contained in:
Masafumi Koba 2025-01-21 19:22:39 +09:00 committed by GitHub
parent 8288f95ea1
commit 9c972a9b66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -503,7 +503,7 @@ For workflows using `on: push` you may want to ignore push events for tags and o
on:
push:
branches:
- '**'
- '**'
```
If you have a workflow that contains jobs to handle push events on branches as well as tags, you can make sure that the job where you use `create-pull-request` action only executes when `github.ref` is a branch by using an `if` condition as follows.