From 02baeb6dac4621588baa02f6db9597af4f9daf2a Mon Sep 17 00:00:00 2001 From: Rob Hogan Date: Wed, 9 Feb 2022 04:48:05 -0800 Subject: [PATCH] Change github actions trigger to use `main` branch (#769) Summary: This hasn't been updated since we renamed from `master`, and resulted in deploy not triggering. Pull Request resolved: https://github.com/facebook/metro/pull/769 Reviewed By: motiz88 Differential Revision: D34106356 Pulled By: rh389 fbshipit-source-id: ad880d0d95653ec366265c2616ef920770f85732 --- .github/workflows/deploy-website.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml index b4e6668530..c84ac64cf1 100644 --- a/.github/workflows/deploy-website.yml +++ b/.github/workflows/deploy-website.yml @@ -3,7 +3,7 @@ name: Deploy on: push: branches: - - "master" + - "main" paths: - "docs/**" - "website/**"