-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
31 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
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/[email protected] | ||
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/[email protected] | ||
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/[email protected] | ||
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" |