Skip to content

Commit

Permalink
Update move issue workflow (#3048)
Browse files Browse the repository at this point in the history
- corrected syntax error in if condition
  • Loading branch information
avidit authored Feb 23, 2024
1 parent a78caa3 commit cf645f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/move_issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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]
Expand Down

0 comments on commit cf645f0

Please sign in to comment.