generated from nimblehq/git-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#225] Generate sample project as a part of test workflow
- Loading branch information
Showing
1 changed file
with
2 additions
and
0 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 |
---|---|---|
|
@@ -88,6 +88,8 @@ jobs: | |
# The job generate_sample_project identify that the job generate_mason_bundle must complete successfully | ||
# before this generate_sample_project job will run | ||
needs: generate_mason_bundle | ||
# Run on merge commits only | ||
if: ${{ contains(github.event.head_commit.message, 'Merge pull request') || (github.event.head_commit.author.email != '[email protected]') }} | ||
name: Generate the sample project | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
|