-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed wrong if condition in github action
- Loading branch information
1 parent
8d42bbc
commit 6e26d2b
Showing
1 changed file
with
4 additions
and
4 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 |
---|---|---|
|
@@ -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 }} | ||
|