From 9c972a9b66c56f5cd17e28b61b7d1bcabad9f78a Mon Sep 17 00:00:00 2001 From: Masafumi Koba <473530+ybiquitous@users.noreply.github.com> Date: Tue, 21 Jan 2025 19:22:39 +0900 Subject: [PATCH] docs: revert unexpected change --- docs/examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples.md b/docs/examples.md index 226b748d..0ceadd7f 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -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.