Skip to content

Commit

Permalink
Forgot to save the previous changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mountiny committed Mar 4, 2022
1 parent 78c8b3d commit 8e80a48
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/preDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,11 +209,11 @@ jobs:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}

# Check if actor is member of Expensify organization by looking for engineering team
isExpensifyEmployee:
isExpensifyEngineer:
runs-on: ubuntu-latest

outputs:
IS_EXPENSIFY_EMPLOYEE: ${{ fromJSON(steps.checkActor.outputs.isTeamMember) }}
IS_EXPENSIFY_ENGINEER: ${{ fromJSON(steps.checkActor.outputs.isTeamMember) }}

steps:
- name: Check whether the actor is member of engineering team
Expand All @@ -226,8 +226,8 @@ jobs:

newContributorWelcomeMessage:
runs-on: ubuntu-latest
needs: isExpensifyEmployee
if: ${{ github.actor != 'OSBotify' && !fromJSON(needs.isExpensifyEmployee.outputs.IS_EXPENSIFY_EMPLOYEE) }}
needs: isExpensifyEngineer
if: ${{ github.actor != 'OSBotify' && !fromJSON(needs.isExpensifyEngineer.outputs.IS_EXPENSIFY_ENGINEER) }}
steps:
# Version: 2.3.4
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
Expand Down

0 comments on commit 8e80a48

Please sign in to comment.