mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-04 13:06:53 +00:00
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 7.0.11 to 8.1.0.
- [Release notes](https://github.com/peter-evans/create-pull-request/releases)
- [Commits](22a9089034...c0f553fe54)
---
updated-dependencies:
- dependency-name: peter-evans/create-pull-request
dependency-version: 8.1.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
56 lines
2 KiB
YAML
56 lines
2 KiB
YAML
name: talk-update
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '00 12 * * *'
|
|
|
|
jobs:
|
|
talk-update:
|
|
name: update talk
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- name: Run talk-container-update
|
|
run: |
|
|
# Recording
|
|
recording_version="$(
|
|
git ls-remote https://github.com/nextcloud/nextcloud-talk-recording v* \
|
|
| cut -d/ -f3 \
|
|
| sort -V \
|
|
| grep -E "^v[0-9\.]+$" \
|
|
| tail -1
|
|
)"
|
|
sed -i "s|^ENV RECORDING_VERSION.*$|ENV RECORDING_VERSION=$recording_version|" ./Containers/talk-recording/Dockerfile
|
|
curl -L "https://raw.githubusercontent.com/nextcloud/nextcloud-talk-recording/$recording_version/server.conf.in" -o Containers/talk-recording/recording.conf
|
|
|
|
# Signaling
|
|
signaling_version="$(
|
|
git ls-remote https://github.com/strukturag/nextcloud-spreed-signaling v*.*.* \
|
|
| cut -d/ -f3 \
|
|
| sort -V \
|
|
| grep -E "^v[0-9]+\.[0-9]+\.[0-9]+$" \
|
|
| tail -1
|
|
)"
|
|
curl -L "https://raw.githubusercontent.com/strukturag/nextcloud-spreed-signaling/$signaling_version/server.conf.in" -o Containers/talk/server.conf.in
|
|
|
|
# Janus
|
|
janus_version="$(
|
|
git ls-remote https://github.com/meetecho/janus-gateway v1.*.* \
|
|
| cut -d/ -f3 \
|
|
| sort -V \
|
|
| grep -E "^v[0-9]+\.[0-9]+\.[0-9]+$" \
|
|
| tail -1
|
|
)"
|
|
sed -i "s|^ARG JANUS_VERSION=.*$|ARG JANUS_VERSION=$janus_version|" ./Containers/talk/Dockerfile
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v7
|
|
with:
|
|
commit-message: talk-update automated change
|
|
signoff: true
|
|
title: talk container update
|
|
body: Automated talk container update
|
|
labels: dependencies, 3. to review
|
|
milestone: next
|
|
branch: talk-container-update
|