Skip to content

Commit

Permalink
Update issues workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
avidit committed Sep 1, 2023
1 parent 4b2afda commit 0104342
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ name: Issues workflow
# - sets status as 'Done' when an item is closed

# This workflow complements the built in workflow and
# - moves labeled issues labeled to 'Backlog' column the project
# - moves issues labeled as 'tracked' to 'Todo' column the project
# - moves any labeled issues to 'Backlog' column in the project
# - moves issues labeled as 'tracked' to 'Todo' column in the project

on:
issues:
Expand All @@ -23,10 +23,10 @@ env:
project_id: 3

jobs:
issue_labeled:
name: issue labeled
issue_labeled_any:
name: Move any labeled issue
runs-on: ubuntu-latest
if: github.event_name == 'issues' && github.event.action == 'labeled'
if: github.event.label.name != 'Tracked'
steps:
- name: Move issue to Backlog
uses: leonsteinhaeuser/[email protected]
Expand All @@ -36,6 +36,10 @@ jobs:
project_id: ${{ env.project_id }}
resource_node_id: ${{ github.event.issue.node_id }}
status_value: Backlog
issue_labeled_as_tracked:
name: Move issue labeled as 'Tracked'
runs-on: ubuntu-latest
steps:
- name: Move issue to Todo
if: github.event.label.name == 'Tracked'
uses: leonsteinhaeuser/[email protected]
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# DynamoWishlist

![GitHub issues](https://img.shields.io/github/issues/DynamoDS/DynamoWishlist) ![GitHub closed issues](https://img.shields.io/github/issues-closed/DynamoDS/DynamoWishlist)

![Image](resources/images/dynamo_logo_light.png)

[Dynamo](https://github.com/DynamoDS/Dynamo) is a visual programming tool that aims to be accessible to both non-programmers and programmers alike. It gives users the ability to visually script behavior, define custom pieces of logic, and script using various textual programming languages.

This repository is to collect all of the **Wishlist** items for Dynamo Core. Please submit them under the [issues tab](https://github.com/DynamoDS/DynamoWishlist/issues) and they will form part of the discussion around Dynamo's future state and where it's headed!

Please feel free to submit as many as you like and the more information you can submit with them the better! You can track the status the issues in the [DynamoWishlist Project board](https://github.com/orgs/DynamoDS/projects/3)
Please feel free to submit as many as you like and the more information you can submit with them the better! You can track the status of the issues in the [DynamoWishlist Project board](https://github.com/orgs/DynamoDS/projects/3)

## Get Dynamo

Expand Down

0 comments on commit 0104342

Please sign in to comment.