From 59a1c38d34d8bc653d652dd9f5ef234da0e98cef Mon Sep 17 00:00:00 2001 From: Shazib Hussain Date: Wed, 28 Jun 2023 22:10:10 +0100 Subject: [PATCH] Move netlify-wait-for-build into github/actions folder (#1222) This script is only used for the github e2e tests so doesn't need to be inside /bin --- {bin => .github/actions}/netlify-wait-for-build | 0 .github/workflows/e2e-test.yml | 2 +- upcoming-release-notes/1222.md | 6 ++++++ 3 files changed, 7 insertions(+), 1 deletion(-) rename {bin => .github/actions}/netlify-wait-for-build (100%) create mode 100644 upcoming-release-notes/1222.md diff --git a/bin/netlify-wait-for-build b/.github/actions/netlify-wait-for-build similarity index 100% rename from bin/netlify-wait-for-build rename to .github/actions/netlify-wait-for-build diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 509373a46f9..144ed443ce0 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -20,7 +20,7 @@ jobs: env: COMMIT_SHA: ${{ github.event.pull_request.head.sha }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: ./bin/netlify-wait-for-build + run: ./.github/actions/netlify-wait-for-build - name: Run E2E Tests on Netlify URL run: yarn e2e env: diff --git a/upcoming-release-notes/1222.md b/upcoming-release-notes/1222.md new file mode 100644 index 00000000000..896fbb818fb --- /dev/null +++ b/upcoming-release-notes/1222.md @@ -0,0 +1,6 @@ +--- +category: Maintenance +authors: [Shazib] +--- + +Tidy up github action scripts