From fa35bc98013121cd8bb20299ab12e1b660428558 Mon Sep 17 00:00:00 2001 From: dariuszkuc <9501705+dariuszkuc@users.noreply.github.com> Date: Tue, 18 Jul 2023 16:38:28 -0500 Subject: [PATCH] build: update workflows to reflect default main branch --- .github/workflows/continuous-integration.yml | 2 +- .github/workflows/pr-check.yml | 2 +- CONTRIBUTING.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 5df6039f..c2e8aba5 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -3,7 +3,7 @@ name: Continuous Integration on: push: branches: - - master + - main paths-ignore: - '*.md' diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index c87d9664..fc6f8889 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -3,7 +3,7 @@ name: Pull Request Check on: pull_request: branches: - - master + - main paths-ignore: - '*.md' diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f6245cae..08ab498b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -82,7 +82,7 @@ A maintainer will need to sign off on your pull request before it can be merged. In order to [release a new version](https://github.com/apollographql/federation-jvm/releases) we need to draft a new release and tag the commit. Releases are following [semantic versioning](https://semver.org/) and specify major, minor and patch version. -Once release is published it will trigger corresponding [Github Action](https://github.com/apollographql/federation-jvm/blob/master/.github/workflows/release.yml) +Once release is published it will trigger corresponding [Github Action](https://github.com/apollographql/federation-jvm/blob/main/.github/workflows/release.yml) based on the published release event. Release workflow will then proceed to build and publish all library artifacts to [Maven Central](https://central.sonatype.org/). ### Release requirements