forked from DynamoDS/DynamoRevit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update move issue workflow (DynamoDS#3048)
- corrected syntax error in if condition
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -30,7 +30,7 @@ jobs: | |
transfer_issue_labeled_as_dynamo: | ||
name: Transfer issue labeled as Dynamo | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.action == 'labeled' }} && ${{ github.event.label.name == 'Dynamo' }} | ||
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'Dynamo' }} | ||
steps: | ||
- name: Transfer issue to Dynamo Repository | ||
env: | ||
|
@@ -41,7 +41,7 @@ jobs: | |
transfer_issue_labeled_as_wishlist: | ||
name: Transfer issue labeled as Wishlist | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.action == 'labeled' }} && ${{ github.event.label.name == 'Wishlist' }} | ||
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'Wishlist' }} | ||
steps: | ||
- name: Transfer issue to DynamoWishlist Repository | ||
env: | ||
|
@@ -52,7 +52,7 @@ jobs: | |
move_issue_labeled_as_tracked: | ||
name: Move issue labeled as tracked | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.action == 'labeled' }} && ${{ github.event.label.name == 'tracked' }} | ||
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'tracked' }} | ||
steps: | ||
- name: Move issue to Todo | ||
uses: leonsteinhaeuser/[email protected] | ||
|