Skip to content

Commit

Permalink
Add issue template config (#243)
Browse files Browse the repository at this point in the history
Co-authored-by: kca <[email protected]>
  • Loading branch information
avidit and avidit authored Aug 23, 2023
1 parent 0c74d7e commit 452c7da
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 11 deletions.
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
blank_issues_enabled: false
contact_links:
- name: Dynamo Issues
url: https://github.com/DynamoDS/Dynamo/issues/new
about: Report a bug with Dynamo
- name: Dynamo Revit Issues
url: https://github.com/DynamoDS/DynamoRevit/issues/new
about: Report a bug with DynamoRevit
- name: Dynamo Forum
url: https://forum.dynamobim.com/
about: Discussions? Questions? Ideas? Something to share?
7 changes: 3 additions & 4 deletions .github/ISSUE_TEMPLATE/dynamo-wishlist-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,15 @@ assignees: ''

---

If this is an issue for Dynamo Core, please submit your issue on the [Dynamo Core issues page](https://github.com/DynamoDS/Dynamo/issues) or if this is an issue for Dynamo for Revit, please post your issue on the [Dynamo for Revit Issues page](https://github.com/DynamoDS/DynamoRevit/issues).

If this is an issue for Dynamo Core, please submit your issue on the [Dynamo](https://github.com/DynamoDS/Dynamo/issues/new)
If this is an issue for Dynamo for Revit, please post your issue on the [DynamoRevit Issuee](https://github.com/DynamoDS/DynamoRevit/issues/new).
If this issue is **not** a Wishlist request, please check the [Dynamo forum](https://forum.dynamobim.com/), and start a thread there to discuss your issue.


## What improvement/feature would you like to see in Dynamo?

(Fill in here)

## How would you see this improvement/feature working?
## How would you see this improvement/feature working?

(Fill in here)

Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/project_automation.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# This workflow automates issues added to the repo.
# It will add new issues to the project
# DynamoWishlist - https://github.com/orgs/DynamoDS/projects/3
# It will add new issues to the project DynamoWishlist - https://github.com/orgs/DynamoDS/projects/3
# and moves issues through the appropriate columns
name: Project automation

Expand All @@ -24,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'issues' && (github.event.action == 'opened' || github.event.action == 'reopened')
steps:
- name: Move issue to triage
- name: Move issue to Triage
uses: leonsteinhaeuser/[email protected]
with:
gh_token: ${{ env.gh_token }}
Expand All @@ -38,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'issues' && github.event.action == 'labeled'
steps:
- name: Move issue to triage
- name: Move issue to Backlog
uses: leonsteinhaeuser/[email protected]
with:
gh_token: ${{ env.gh_token }}
Expand All @@ -52,7 +51,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'issues' && github.event.action == 'labeled' && github.event.label.name == 'Tracked'
steps:
- name: Move issue to todo
- name: Move issue to Todo
uses: leonsteinhaeuser/[email protected]
with:
gh_token: ${{ env.gh_token }}
Expand All @@ -66,14 +65,14 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'issues' && github.event.action == 'assigned'
steps:
- name: Move issue to todo
- name: Move issue to In Progress
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
status_value: In Progress

issue_closed:
name: issue closed
Expand Down

0 comments on commit 452c7da

Please sign in to comment.