Skip to content

Commit

Permalink
Allow manually triggering lint workflow (#3785)
Browse files Browse the repository at this point in the history
Needed until we update the shared workflow to run on pull requests
from forked repositories.
  • Loading branch information
jstvz authored May 14, 2024
1 parent 689a414 commit 9bf5a55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/feature_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
lint:
name: Lint
if: ${{ github.event_name == 'pull_request' }}
if: ${{ contains(fromJSON('["workflow_dispatch", "pull_request"]'), github.event_name) }}
uses: SFDO-Tooling/.github/.github/workflows/pre-commit.yml@main
docs:
name: Build Docs
Expand Down

0 comments on commit 9bf5a55

Please sign in to comment.