Skip to content

Commit 70d821b

Browse files
committed
update branch name
1 parent ff53945 commit 70d821b

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33

44
"on":
55
push:
6-
branches: [owner, main, master]
6+
branches: [master]
77
paths:
88
- ".github/workflows/ci.yml"
99
- ".taplo.toml"

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Nightly release pipeline.
22
#
3-
# Picks the newest owner commit that has passed `ci.yml`, builds platform
3+
# Picks the newest master commit that has passed `ci.yml`, builds platform
44
# binaries in release mode, and publishes a GitHub Release with per-platform
55
# zips. The most recent release acts as the "last good version" pointer - this
66
# workflow no-ops when no new green commit has appeared since.
@@ -34,24 +34,24 @@ jobs:
3434
tag: ${{ steps.pick.outputs.tag }}
3535
should_release: ${{ steps.pick.outputs.should_release }}
3636
steps:
37-
- name: Find newest green commit on owner
37+
- name: Find newest green commit on master
3838
id: pick
3939
env:
4040
GH_TOKEN: ${{ github.token }}
4141
FORCE: ${{ inputs.force }}
4242
run: |
4343
set -euo pipefail
4444
45-
# Newest SHA from recent successful CI runs on owner.
45+
# Newest SHA from recent successful CI runs on master.
4646
candidate=$(
4747
gh api -X GET \
4848
"repos/${GITHUB_REPOSITORY}/actions/workflows/ci.yml/runs" \
49-
-f branch=owner -f status=success -F per_page=100 \
49+
-f branch=master -f status=success -F per_page=100 \
5050
| jq -r '[.workflow_runs | sort_by(.created_at) | reverse | .[].head_sha][0] // ""'
5151
)
5252
5353
if [ -z "$candidate" ]; then
54-
echo "No owner commit has CI green; skipping." | tee -a "$GITHUB_STEP_SUMMARY"
54+
echo "No master commit has CI green; skipping." | tee -a "$GITHUB_STEP_SUMMARY"
5555
echo "should_release=false" >>"$GITHUB_OUTPUT"
5656
exit 0
5757
fi

.github/workflows/static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Deploy static content to Pages
44
on:
55
# Runs on pushes targeting the default branch
66
push:
7-
branches: ["owner"]
7+
branches: ["master"]
88
paths:
99
- ".github/workflows/static.yml"
1010
- "index.html"

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -278,9 +278,9 @@ The main check workflow lives under `.github/workflows/`.
278278

279279
- `ci.yml` builds and tests the Rust workspace and the .NET solution as independent jobs, each with Ubuntu, Windows, and macOS matrix entries so the Rust and .NET checks can run in parallel. Linux is the only Rust matrix entry that uses `--all-features`, because GStreamer dev packages are reliably installable from the system package manager only on Linux. Windows and macOS still build the `tracy` feature so it stays warning-free on those platforms. The Linux Rust job also installs Vulkan tooling so the `materials::registry` smoke test can find an adapter. The .NET job runs the generator's unit and roundtrip tests, and verifies formatting on Linux only (Windows checkouts can disagree with the in-repo encoding because of `core.autocrlf`, so format checks would fail spuriously there).
280280

281-
The CI workflow triggers on push to `owner`, `main`, or `master`, on pull requests, and on manual dispatch.
281+
The CI workflow triggers on push to `master`, on pull requests, and on manual dispatch.
282282

283-
Local hooks catch failures before a push, but they are not the final gate because any git hook can be bypassed with `--no-verify`. Protect `owner` with a GitHub branch protection rule or ruleset that requires pull requests and these status checks before merge:
283+
Local hooks catch failures before a push, but they are not the final gate because any git hook can be bypassed with `--no-verify`. Protect `master` with a GitHub branch protection rule or ruleset that requires pull requests and these status checks before merge:
284284

285285
- `Rust / ubuntu-latest`
286286
- `Rust / windows-latest`
@@ -289,7 +289,7 @@ Local hooks catch failures before a push, but they are not the final gate becaus
289289
- `.NET / windows-latest`
290290
- `.NET / macos-latest`
291291

292-
Block force pushes and branch deletion on `owner` so the hosted CI result remains the authoritative merge gate.
292+
Block force pushes and branch deletion on `master` so the hosted CI result remains the authoritative merge gate.
293293

294294
---
295295

0 commit comments

Comments
 (0)