Skip to content

Commit

Permalink
fix: resolve duplicate if conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Nov 17, 2023
1 parent c7f7cba commit a00b35c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/discussion_bot_response.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
# Define a display name:
name: 'Respond to question'

# Define the conditions under which the job should run:
if: github.event.discussion.category.name == 'stdlib-bot Q&A'
# Define the conditions under which the job should run: FIXME: un-comment if and when re-enabled
# if: github.event.discussion.category.name == 'stdlib-bot Q&A'

# Define the type of virtual host machine:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/discussion_comment_bot_response.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
# Define a display name:
name: 'Respond to question'

# Define the conditions under which the job should run:
if: github.event.comment.body && startsWith( github.event.comment.body, '/ask ' )
# Define the conditions under which the job should run: FIXME: un-comment if and when re-enabled
# if: github.event.comment.body && startsWith( github.event.comment.body, '/ask ' )

# Define the type of virtual host machine:
runs-on: ubuntu-latest
Expand Down

0 comments on commit a00b35c

Please sign in to comment.