mirror of https://github.com/vector-im/riot-web
32 lines
967 B
YAML
32 lines
967 B
YAML
|
# Re-fetches the Jitsi SDK and opens a PR to update it if it's different from what's in the repository
|
||
|
name: Update Jitsi
|
||
|
on:
|
||
|
workflow_dispatch: {}
|
||
|
schedule:
|
||
|
- cron: "0 3 * * 0" # 3am every Sunday
|
||
|
jobs:
|
||
|
update:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
|
||
|
- uses: actions/setup-node@v4
|
||
|
with:
|
||
|
cache: "yarn"
|
||
|
|
||
|
- name: Install Deps
|
||
|
run: "yarn install --frozen-lockfile"
|
||
|
|
||
|
- name: Fetch Jitsi
|
||
|
run: "yarn update:jitsi"
|
||
|
|
||
|
- name: Create Pull Request
|
||
|
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5
|
||
|
with:
|
||
|
token: ${{ secrets.ELEMENT_BOT_TOKEN }}
|
||
|
branch: actions/jitsi-update
|
||
|
delete-branch: true
|
||
|
title: Jitsi Update
|
||
|
labels: |
|
||
|
T-Task
|