Skip to content

Commit

Permalink
Update move issues workflow (#3004)
Browse files Browse the repository at this point in the history
* Update move issues workflow

* Fix typos
  • Loading branch information
avidit authored Nov 10, 2023
1 parent 91405a0 commit d56f2e5
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
blank_issues_enabled: false
contact_links:
- name: Dynamo Issues
- name: Dynamo Issue
url: https://github.com/DynamoDS/Dynamo/issues/new/choose
about: File an issue with Dynamo
- name: Dynamo Wishlist
Expand Down
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/issue.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Issue
description: File an issue
name: DynamoRevit Issue
description: File an issue with DynamoRevit
projects: [DynamoDS/7]
body:
- type: textarea
attributes:
label: 'Dynamo Version'
label: Dynamo Version
description: |
Which version of Dynamo are you using?
Go to **Dynamo > About** if you are not sure.
Expand Down Expand Up @@ -34,7 +34,7 @@ body:
required: true
- type: textarea
attributes:
label: What did you see instead
label: What did you see instead?
validations:
required: true
- type: textarea
Expand Down
38 changes: 24 additions & 14 deletions .github/workflows/move_issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ name: Move Issues
# Built-in workflow https://github.com/orgs/DynamoDS/projects/7/workflows

# The built-in workflow
# - adds any new issues to DynamoRevitIssues project
# - adds any new issues to DynamoRevit Issues project
# - sets status as 'Triage' when an item is added to the project
# - sets status as 'Backlog' when an item is reopened
# - sets status as 'Done' when an item is closed

# This workflow complements the built in workflow and
# - moves issues labeled as 'Dynamo' to 'DynamoDS/Dynamo' repository
# - moves issues labeled as 'Wishlist' to 'DynamoDS/DynamoWishlist' repository
# - transfers issues labeled as 'Dynamo' to 'DynamoDS/Dynamo' repository
# - transfers issues labeled as 'Wishlist' to 'DynamoDS/DynamoWishlist' repository
# - moves issues labeled as 'tracked' to 'Todo' column the project
# - moves assigned issues to 'In Progress' column the project

Expand All @@ -26,37 +26,47 @@ env:
GH_TOKEN: ${{ secrets.DYNAMO_ISSUES_TOKEN }}
gh_organization: ${{ github.repository_owner }}
project_id: 7
project_name: 'DynamoRevit Issues'
project_name: DynamoRevit Issues

jobs:
issue_labeled:
name: issue labeled
transfer_issue_labeled_as_dynamo:
name: Transfer issue labeled as Dynamo
runs-on: ubuntu-latest
if: github.event.action == 'labeled'
if: ${{ github.event.action == 'labeled' }}
steps:
- uses: actions/checkout@v4
- name: Move issue to Dynamo Repository
- name: Transfer issue to Dynamo Repository
if: ${{ github.event.label.name == 'Dynamo' }}
run: |
gh issue edit ${{ github.event.issue.number }} --remove-project "${{ env.project_name }}"
gh issue transfer ${{ github.event.issue.number }} DynamoDS/Dynamo
- name: Move issue to DynamoWishlist Repository
transfer_issue_labeled_as_wishlist:
name: Transfer issue labeled as Wishlist
runs-on: ubuntu-latest
if: ${{ github.event.action == 'labeled' }}
steps:
- uses: actions/checkout@v4
- name: Transfer issue to DynamoWishlist Repository
if: ${{ github.event.label.name == 'Wishlist' }}
run: |
run: |
gh issue edit ${{ github.event.issue.number }} --remove-project "${{ env.project_name }}"
gh issue transfer ${{ github.event.issue.number }} DynamoDS/DynamoWishlist
move_issue_labeled_as_tracked:
name: Move issue labeled as tracked
runs-on: ubuntu-latest
if: ${{ github.event.action == 'labeled' }}
steps:
- name: Move issue to Todo
if : github.event.label.name == 'tracked'
if: ${{ github.event.label.name == 'tracked' }}
uses: leonsteinhaeuser/[email protected]
with:
gh_token: ${{ env.GH_TOKEN }}
organization: ${{ env.gh_organization }}
project_id: ${{ env.project_id }}
resource_node_id: ${{ github.event.issue.node_id }}
status_value: Todo

issue_assigned:
name: issue assigned
move_assigned_issue:
name: Move assigned issue
runs-on: ubuntu-latest
if: ${{ github.event.action == 'assigned' }}
steps:
Expand Down

0 comments on commit d56f2e5

Please sign in to comment.