Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 0 additions & 81 deletions .ci/get_solved_issues-github-actions.py

This file was deleted.

56 changes: 44 additions & 12 deletions .github/workflows/projFixedIssues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,56 @@
on:
workflow_dispatch:
inputs:
tag:
description: Generate the release notes of fixed issues for this tag (e.g. "v6-32-12")
type: string
major:
type: choice
description: Major
options:
- 6
- 7
required: true
default: 6
minor:
type: choice
description: Minor
options:
- 26
- 28
- 30
- 32
- 36
- 38
- 40
- 42
- 44
required: true
default: 40
patch:
type: choice
description: Patch
options:
- 00
- 02
- 04
- 06
- 08
- 10
- 12
- 14
- 16
- 18
- 20
- 22
- 24
- 26
- 28
required: true
default: 00

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 }}
run: gh project item-list `gh project list |grep ${{ inputs.major }}.${{ inputs.minor }}.${{ inputs.patch }}|awk '{print$1}` --owner root-project -L 8192|grep "Issue"|sort -t$'\t' -k3 -n -r| awk -v FS='\t' -v OFS='\t' '{print $3" * [[#"$3"](https://github.com/root-project/root/issues/"$3")] - "$2}'

Check failure on line 58 in .github/workflows/projFixedIssues.yml

View workflow job for this annotation

GitHub Actions / lint-action-files

shellcheck reported issue in this script: SC1073:error:1:109: Couldn't parse this single quoted string. Fix to allow more checks

Check failure on line 58 in .github/workflows/projFixedIssues.yml

View workflow job for this annotation

GitHub Actions / lint-action-files

shellcheck reported issue in this script: SC1072:error:1:119: Expected end of single quoted string. Fix any mentioned problems and try again

Check failure on line 58 in .github/workflows/projFixedIssues.yml

View workflow job for this annotation

GitHub Actions / lint-action-files

shellcheck reported issue in this script: SC1009:info:1:105: The mentioned syntax error was in this simple command
Loading