Skip to content

Commit

Permalink
Merge pull request #7698 from Expensify/Rory-ConfirmPassingBuild
Browse files Browse the repository at this point in the history
Do not skip test and lint for workflow_dispatch
  • Loading branch information
AndrewGable authored Feb 11, 2022
2 parents 7a11fac + f9577a9 commit 580cbc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
lint:
if: github.actor != 'OSBotify'
if: ${{ github.actor != 'OSBotify' || github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
test:
if: github.actor != 'OSBotify'
if: ${{ github.actor != 'OSBotify' || github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 580cbc2

Please sign in to comment.