-
Notifications
You must be signed in to change notification settings - Fork 1.3k
38 lines (35 loc) · 1.15 KB
/
chase_for_qa_cards.yml
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
32
33
34
35
36
37
38
name: "Chase teams for QA cards"
on:
workflow_dispatch:
inputs:
version:
description: 'Full version of the release (e.g. 7.31.0)'
required: true
type: string
permissions: {}
jobs:
chase_for_qa_cards:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: ${{ github.head_ref }}
persist-credentials: false
- name: Install python
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0
with:
python-version-file: .python-version
cache: "pip"
- name: Install dda
uses: ./.github/actions/install-dda
with:
features: legacy-tasks legacy-github legacy-release
- name: Chase for QA cards
env:
ATLASSIAN_USERNAME : ${{ secrets.ATLASSIAN_USERNAME }}
ATLASSIAN_PASSWORD : ${{ secrets.ATLASSIAN_PASSWORD }}
SLACK_DATADOG_AGENT_BOT_TOKEN : ${{ secrets.SLACK_DATADOG_AGENT_BOT_TOKEN }}
VERSION: ${{ github.event.inputs.version }}
run: |
dda inv -e release.chase-for-qa-cards -v "$VERSION"