forked from root-project/root
-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (24 loc) · 820 Bytes
/
Copy pathprojFixedIssues.yml
File metadata and controls
26 lines (24 loc) · 820 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
name: 'GetFixedIssues'
on:
workflow_dispatch:
inputs:
tag:
description: Generate the release notes of fixed issues for this tag (e.g. "v6-32-12")
type: string
required: true
jobs:
check-tag:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v5
- name: Install python dependencies
run: |
pip install github3.py
- name: Download issue extraction script
run: |
wget https://raw.githubusercontent.com/root-project/root/master/.ci/get_solved_issues-github-actions.py
- name: Generate list of closed issues for release notes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: python ./get_solved_issues-github-actions.py --project-name ${{ inputs.tag }}