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