Skip to content

Commit

Permalink
Fixed wrong if condition in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
jnidzwetzki committed Sep 12, 2023
1 parent 8d42bbc commit 6e26d2b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ jobs:
team: 'database-eng'
GITHUB_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }}
- name: Remove waiting-for-author label
if: ${{ steps.checkUserMember.outputs.isTeamMember == 'false' }}
&& steps.extract_board_column.outputs.issue_board_column == 'Waiting for Author'
if: ${{ steps.checkUserMember.outputs.isTeamMember == 'false'
&& steps.extract_board_column.outputs.issue_board_column == 'Waiting for Author' }}
uses: andymckay/labeler@3a4296e9dcdf9576b0456050db78cfd34853f260
with:
remove-labels: 'waiting-for-author, no-activity'
repo-token: ${{ secrets.ORG_AUTOMATION_TOKEN }}
- name: Move to waiting for engineering column
if: ${{ steps.checkUserMember.outputs.isTeamMember == 'false' }}
&& steps.extract_board_column.outputs.issue_board_column == 'Waiting for Author'
if: ${{ steps.checkUserMember.outputs.isTeamMember == 'false'
&& steps.extract_board_column.outputs.issue_board_column == 'Waiting for Author' }}
uses: leonsteinhaeuser/[email protected]
with:
gh_token: ${{ secrets.ORG_AUTOMATION_TOKEN }}
Expand Down

0 comments on commit 6e26d2b

Please sign in to comment.