From f7b4de6b2662471d0c556bbab3d984b66fa7826a Mon Sep 17 00:00:00 2001 From: Peter Evans <18365890+peter-evans@users.noreply.github.com> Date: Wed, 12 May 2021 17:29:28 +0900 Subject: [PATCH] Update default branch --- .github/workflows/ci.yml | 8 ++++---- README.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 76a7285..04e4184 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,12 +1,12 @@ name: CI on: push: - branches: [master] + branches: [main] paths-ignore: - 'README.md' - 'docs/**' pull_request: - branches: [master] + branches: [main] paths-ignore: - 'README.md' - 'docs/**' @@ -66,7 +66,7 @@ jobs: event-type: tests package: - if: github.event_name == 'push' && github.ref == 'refs/heads/master' + if: github.event_name == 'push' && github.ref == 'refs/heads/main' needs: [test] runs-on: ubuntu-latest steps: @@ -81,7 +81,7 @@ jobs: commit-message: Update distribution title: Update distribution body: | - - Updates the distribution for changes on `master` + - Updates the distribution for changes on `main` Auto-generated by [create-pull-request][1] diff --git a/README.md b/README.md index 762327a..451fb64 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Here is an example setting all of the input parameters. ``` Here is an example `on: repository_dispatch` workflow to receive the event. -Note that repository dispatch events will only trigger a workflow run if the workflow is committed to the default branch (usually `master`). +Note that repository dispatch events will only trigger a workflow run if the workflow is committed to the default branch. ```yml name: Repository Dispatch