forked from mozilla-services/pkcs7
-
Notifications
You must be signed in to change notification settings - Fork 11
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 #2 from smallstep/max/ci
[action] First pass at common CI
- Loading branch information
Showing
3 changed files
with
40 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,20 @@ | ||
<!--- | ||
Please provide answers in the spaces below each prompt, where applicable. | ||
Not every PR requires responses for each prompt. | ||
Use your discretion. | ||
--> | ||
#### Name of feature: | ||
|
||
#### Pain or issue this feature alleviates: | ||
|
||
#### Why is this important to the project (if not answered above): | ||
|
||
#### Is there documentation on how to use this feature? If so, where? | ||
|
||
#### In what environments or workflows is this feature supported? | ||
|
||
#### In what environments or workflows is this feature explicitly NOT supported (if any)? | ||
|
||
#### Supporting links/other PRs/issues: | ||
|
||
💔Thank you! |
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,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "gomod" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
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,9 @@ | ||
name: Code Scan Cron | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * SUN' | ||
|
||
jobs: | ||
code-scan: | ||
uses: smallstep/workflows/.github/workflows/code-scan.yml@main |