Skip to content

Commit

Permalink
Update labeled_issue.yml
Browse files Browse the repository at this point in the history
Add more jobs
  • Loading branch information
fabiovinci authored Mar 14, 2023
1 parent 6149dd6 commit 29ed25e
Showing 1 changed file with 31 additions and 9 deletions.
40 changes: 31 additions & 9 deletions .github/workflows/labeled_issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,47 @@ on:
issues:
types: [labeled]

jobs:
move_under_analysis_issues:
name: Move "under analysis" issues
jobs:
move_under_development_issues:
name: Move "under development" issues
runs-on: ubuntu-latest
steps:
- uses: konradpabjan/move-labeled-or-milestoned-issue@v2.0
with:
action-token: "${{ secrets.PROJECT_AUTOMATION }}"
project-url: "https://github.com/INSPIRE-MIF/helpdesk-validator/projects/1"
column-name: "In progress"
label-name: "under development"

move_ready_for_testing_issues:
name: Move "ready for testings" issues
runs-on: ubuntu-latest
steps:
- uses: konradpabjan/move-labeled-or-milestoned-issue@v2.0
with:
action-token: "${{ secrets.PROJECT_AUTOMATION }}"
project-url: "https://github.com/INSPIRE-MIF/helpdesk-validator/projects/1"
column-name: "To do"
label-name: "under analysis"
column-name: "Staging: for acceptance"
label-name: "ready for testing"

move_under_development_issues:
name: Move "under development" issues
move_solved_issues:
name: Move "solved" issues
runs-on: ubuntu-latest
steps:
- uses: konradpabjan/move-labeled-or-milestoned-issue@v2.0
with:
action-token: "${{ secrets.PROJECT_AUTOMATION }}"
project-url: "https://github.com/INSPIRE-MIF/helpdesk-validator/projects/1"
column-name: "In progress"
label-name: "under development"
column-name: "Staging: in release planning"
label-name: "solved"

move_deployed_in_reference_validator_issues:
name: Move "deployed in reference validator" issues
runs-on: ubuntu-latest
steps:
- uses: konradpabjan/move-labeled-or-milestoned-issue@v2.0
with:
action-token: "${{ secrets.PROJECT_AUTOMATION }}"
project-url: "https://github.com/INSPIRE-MIF/helpdesk-validator/projects/1"
column-name: "Production: latest release"
label-name: "deployed in reference validator"

0 comments on commit 29ed25e

Please sign in to comment.