diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 64d7f7e7..7e4aa31e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -627,7 +627,7 @@ jobs: - macos-gui steps: - name: Check if any job failed - if: ${{ (github.ref == 'refs/heads/master') || (github.ref == 'refs/heads/rc') }} + if: ${{ (github.ref == 'refs/heads/main') || (github.ref == 'refs/heads/rc') }} env: CLOC_STATUS: ${{ needs.cloc.result }} SETUP_STATUS: ${{ needs.setup.result }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 64139bf5..77bc7088 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,7 +71,7 @@ jobs: with: workflow: build.yml workflow_conclusion: success - branch: master + branch: main - name: Create release if: ${{ github.event.inputs.release_type != 'Dry Run' }} diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index 676c2cdd..d7716451 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -117,7 +117,7 @@ jobs: TITLE: "Bump version to ${{ inputs.version_number }}" run: | PR_URL=$(gh pr create --title "$TITLE" \ - --base "master" \ + --base "main" \ --head "$PR_BRANCH" \ --label "version update" \ --label "automated pr" \