forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 1.17 KB
/
chase_release_managers.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 missing release managers in confluence"
on:
workflow_dispatch:
inputs:
version:
description: 'Full version of the release to schedule (e.g. 7.31.0)'
required: true
type: string
permissions: {}
jobs:
chase_release_managers:
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
- name: Chase release managers
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-release-managers --version "$VERSION"