From 08c6fede01e85fc383f86624f40bad1cd737b924 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Mon, 19 May 2025 08:56:08 -0700 Subject: [PATCH] =?UTF-8?q?Update=20README=E2=80=99s=20boilerplate=20for?= =?UTF-8?q?=20branches?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 9092575..5c031a1 100644 --- a/README.md +++ b/README.md @@ -20,17 +20,16 @@ On GitHub.com, go to your extension's repository, click **Add file → Create ne name: Tests on: - push: - branches: # Run tests when commits are pushed to these branches in your repo + push: # Run tests when commits are pushed to these branches in your repo, + branches: # ... or remove this branches section to run tests on all your branches + - main # Main production branch + - master # Legacy or alternative main branch + - dev/* # Any feature branches under "dev/", e.g., dev/new-feature + + pull_request: # Run tests when pull requests are made on these branches in your repo, + branches: # ... or remove this branches section to run tests on all your branches - main - master - - develop - - dev/* - pull_request: # Run tests when pull requests are made on these branches in your repo - branches: - - main - - master - - develop - dev/* jobs: