-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #215 from rcbops/RE-1790/master/0
Add new component gating skeleton
- Loading branch information
Showing
7 changed files
with
43 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# This file is used to track component information in the repository, currently | ||
# it is limited to component dependencies. | ||
|
||
{} |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# This file records the specific versions of dependencies that a project should | ||
# use. Put another way it is used to pin component dependencies. This file | ||
# should be updated automatically by the dependency update job. | ||
|
||
{} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
check |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
check |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
# Dependency updates are checked periodically. A project should codify the | ||
# process for updating the working directory of the repository with any changes | ||
# to upstream dependencies. If changes are made, the job will automatically | ||
# create a new pull request. | ||
|
||
# post is an optional executable that is the last stage to run. It is used to | ||
# perform actions that make use of the data generated. Such actions include log | ||
# aggregation and preparing the node to be used as an image. |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
# Dependency updates are checked periodically. A project should codify the | ||
# process for updating the working directory of the repository with any changes | ||
# to upstream dependencies. If changes are made, the job will automatically | ||
# create a new pull request. | ||
|
||
# pre is an optional executable for preparing the node prior to running the | ||
# build. This step is retried on failure given that it performs preparatory | ||
# actions and not the actual function of the job. Examples of actions that | ||
# should be taken here include things that would be performed manually such as | ||
# setting configuration options. |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
# Dependency updates are checked periodically. A project should codify the | ||
# process for updating the working directory of the repository with any changes | ||
# to upstream dependencies. If changes are made, the job will automatically | ||
# create a new pull request. | ||
|
||
# run is a required executable that executes the purpose of the job. For | ||
# example, if the project deploys some software, this file would be used to | ||
# perform the deployment and then test the success of the operation. |