Fix call.element.dev not updating after branch rename

This commit is contained in:
Robin
2026-09-09 08:49:08 +02:00
parent a376280c91
commit 1d7e2288f7
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -5,7 +5,7 @@
> Every PR must have a linked issue > Every PR must have a linked issue
> that a maintainer has reviewed and approved **before you started writing code**. > that a maintainer has reviewed and approved **before you started writing code**.
> PRs that don't meet this requirement will not be reviewed. > PRs that don't meet this requirement will not be reviewed.
> See [CONTRIBUTING.md](https://github.com/element-hq/element-call/blob/livekit/CONTRIBUTING.md) for ElementCall decided for this approach. > See [CONTRIBUTING.md](https://github.com/element-hq/element-call/blob/main/CONTRIBUTING.md) for ElementCall decided for this approach.
## Content ## Content
@@ -39,7 +39,7 @@ Uncomment the markdown table below and fill in the last line:
## Checklist ## Checklist
- [ ] A linked, pre-approved issue exists for this feature or UI change. - [ ] A linked, pre-approved issue exists for this feature or UI change.
- [ ] I have read [CONTRIBUTING.md](https://github.com/element-hq/element-call/blob/livekit/CONTRIBUTING.md) in full. - [ ] I have read [CONTRIBUTING.md](https://github.com/element-hq/element-call/blob/main/CONTRIBUTING.md) in full.
- [ ] Pull request includes screenshots or videos for any UI changes. - [ ] Pull request includes screenshots or videos for any UI changes.
- [ ] Tests written for new code (and existing touched code where feasible). - [ ] Tests written for new code (and existing touched code where feasible).
- [ ] Linter and other CI checks pass. - [ ] Linter and other CI checks pass.
+5 -5
View File
@@ -6,7 +6,7 @@ on:
- opened - opened
- labeled - labeled
push: push:
branches: [livekit, full-mesh] branches: [main]
jobs: jobs:
build_full_element_call: build_full_element_call:
# Use the full package vite build # Use the full package vite build
@@ -22,8 +22,8 @@ jobs:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
deploy_develop: deploy_develop:
# Deploy livekit branch to call.element.dev after build completes # Deploy main branch to call.element.dev after build completes
if: github.ref == 'refs/heads/livekit' if: github.ref == 'refs/heads/main'
needs: build_full_element_call needs: build_full_element_call
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@@ -43,8 +43,8 @@ jobs:
} }
}) })
docker_for_develop: docker_for_develop:
# Build docker and publish docker for livekit branch after build completes # Build docker and publish docker for main branch after build completes
if: github.ref == 'refs/heads/livekit' if: github.ref == 'refs/heads/main'
needs: build_full_element_call needs: build_full_element_call
permissions: permissions:
contents: write contents: write