-
Notifications
You must be signed in to change notification settings - Fork 98
31 lines (29 loc) · 891 Bytes
/
test_manually.yml
File metadata and controls
31 lines (29 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Trigger test against a specific version
on:
workflow_dispatch:
inputs:
rocket-chat-version:
description: 'The version of Rocket.Chat to use'
required: true
default: 'latest'
python-version:
description: 'The version of Python to use'
required: true
default: '3.14'
jobs:
test:
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
- name: Test
uses: ./.github/actions/test_rocketchat
with:
python-version: ${PYTHON_VERSION}
rocket-chat-version: ${ROCKETCHAT_VERSION}
rocket-chat-license: ${{ secrets.ROCKETCHAT_LICENSE }}
env:
PYTHON_VERSION: ${{ github.event.inputs.python-version }}
ROCKETCHAT_VERSION: ${{ github.event.inputs.rocket-chat-version }}