Skip to content

Commit 2ddcc21

Browse files
committed
Update get release timelines test
1 parent 2d82b7b commit 2ddcc21

2 files changed

Lines changed: 24 additions & 18 deletions

File tree

.github/workflows/get-release-timelines-test.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Test "Get Release Timelines" Action
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
required: true
8+
type: string
9+
description: The version of the release
10+
11+
jobs:
12+
test-get-release-timelines:
13+
name: Test
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v5
18+
- name: Add team label
19+
uses: ./.github/actions/get-release-timelines
20+
with:
21+
github-token: ${{ secrets.GITHUB_TOKEN }}
22+
runway-app-id: ${{ secrets.RUNWAY_APP_ID }}
23+
runway-api-key: ${{ secrets.RUNWAY_API_KEY }}
24+
version: ${{ github.event.inputs.version }}

0 commit comments

Comments
 (0)