Skip to content
Snippets Groups Projects
Commit 27e3fdc9 authored by Bennett Goble's avatar Bennett Goble
Browse files

build.yaml: Build shared branches

We're currently building every single commit pushed to Github. This is
racking up $20k in build charges a month and is generally superfluous.

This changeset alters build triggers so that builds automatically run if
they are committed to a **shared branch**:

- `release/*` - A release stabilization branch
- `project/*` - A project viewer branch
- `main/*` - The default/stable branch

PR commits are also automatically built.

...need to build another commit? Developers can trigger one using a
manual workflow run.
parent c0861e93
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
......@@ -4,8 +4,8 @@ on:
workflow_dispatch:
pull_request:
push:
branches: ["*"]
tags: ["*"]
branches: ["main", "release/*", "project/*"]
tags: ["Second_Life_*"]
jobs:
build:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment