From fd4c10947f891f2de2901c3b0d9af0bfd8275a58 Mon Sep 17 00:00:00 2001 From: Nassim Jahnke Date: Sat, 21 Dec 2024 14:03:02 +0100 Subject: [PATCH] Update branch name references --- .github/workflows/close_invalid_prs.yml | 10 +++++----- CONTRIBUTING.md | 6 +++--- README.md | 2 +- settings.gradle.kts | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/close_invalid_prs.yml b/.github/workflows/close_invalid_prs.yml index ef572c25c8..52ac0c1769 100644 --- a/.github/workflows/close_invalid_prs.yml +++ b/.github/workflows/close_invalid_prs.yml @@ -9,19 +9,19 @@ jobs: if: | github.repository != github.event.pull_request.head.repo.full_name && ( - github.head_ref == 'master' || + github.head_ref == 'main' || github.event.pull_request.head.repo.owner.type != 'User' ) runs-on: ubuntu-latest steps: - uses: superbrothers/close-pull-request@v3 - id: "master_branch" - if: github.head_ref == 'master' + id: "main_branch" + if: github.head_ref == 'main' with: - comment: "Please do not open pull requests from the `master` branch, create a new branch instead." + comment: "Please do not open pull requests from the `main` branch, create a new branch instead." - uses: superbrothers/close-pull-request@v3 id: "org_account" - if: github.event.pull_request.head.repo.owner.type != 'User' && steps.master_branch.outcome == 'skipped' + if: github.event.pull_request.head.repo.owner.type != 'User' && steps.main_branch.outcome == 'skipped' with: comment: "Please do not open pull requests from non-user accounts like organizations. Create a fork on a user account instead." diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 38fb143438..74421624b1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -185,11 +185,11 @@ need to "save" the changes. ## Rebasing PRs -Steps to rebase a PR to include the latest changes from `master`. +Steps to rebase a PR to include the latest changes from `main`. These steps assume the `origin` remote is your fork of this repository and `upstream` is the official PaperMC repository. -1. Pull the latest changes from upstreams master: `git switch main && git pull upstream main`. -1. Checkout feature/fix branch and rebase on master: `git checkout patch-branch && git rebase main`. +1. Pull the latest changes from upstreams main: `git switch main && git pull upstream main`. +1. Checkout feature/fix branch and rebase on main: `git checkout patch-branch && git rebase main`. 1. Apply updated patches: `./gradlew applyPatches`. 1. If there are conflicts, fix them. 1. If your PR creates new feature patches instead of modifying existing ones, ensure your newly-created patch is the last commit by either: diff --git a/README.md b/README.md index 983f2b975d..3223166baa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Paper [![Paper Build Status](https://img.shields.io/github/actions/workflow/status/PaperMC/Paper/build.yml?branch=master)](https://github.com/PaperMC/Paper/actions) +Paper [![Paper Build Status](https://img.shields.io/github/actions/workflow/status/PaperMC/Paper/build.yml?branch=main)](https://github.com/PaperMC/Paper/actions) [![Discord](https://img.shields.io/discord/289587909051416579.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/papermc) [![GitHub Sponsors](https://img.shields.io/github/sponsors/papermc?label=GitHub%20Sponsors)](https://github.com/sponsors/PaperMC) [![Open Collective](https://img.shields.io/opencollective/all/papermc?label=OpenCollective%20Sponsors)](https://opencollective.com/papermc) diff --git a/settings.gradle.kts b/settings.gradle.kts index 9503dfc6a6..2e832ab34f 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -24,7 +24,7 @@ if (!file(".git").exists()) { Built Paper jars are available for download at https://papermc.io/downloads/paper - See https://github.com/PaperMC/Paper/blob/master/CONTRIBUTING.md + See https://github.com/PaperMC/Paper/blob/main/CONTRIBUTING.md for further information on building and modifying Paper. =================================================== """.trimIndent()