Compare commits
2 Commits
d9f1ff271c
...
13ce10aff0
Author | SHA1 | Date |
---|---|---|
|
13ce10aff0 | 3 days ago |
|
524dc3911e | 3 days ago |
4 changed files with 39 additions and 16 deletions
@ -0,0 +1,27 @@ |
|||
{ |
|||
"name": "BASH Dev Container", |
|||
"image": "mcr.microsoft.com/devcontainers/base:ubuntu", |
|||
"features": { |
|||
"ghcr.io/devcontainers-community/npm-features/prettier:1": {}, |
|||
"ghcr.io/devcontainers-extra/features/actionlint:1": {}, |
|||
"ghcr.io/devcontainers-extra/features/checkov:1": {}, |
|||
"ghcr.io/devcontainers-extra/features/markdownlint-cli:1": {}, |
|||
"ghcr.io/devcontainers-extra/features/shellcheck:1": {}, |
|||
"ghcr.io/devcontainers-extra/features/yamllint:2": {}, |
|||
"ghcr.io/devcontainers/features/github-cli:1": {} |
|||
}, |
|||
"customizations": { |
|||
"vscode": { |
|||
"extensions": [ |
|||
"DavidAnson.vscode-markdownlint", |
|||
"github.vscode-github-actions", |
|||
"GitHub.vscode-pull-request-github", |
|||
"hashicorp.terraform", |
|||
"ms-azuretools.vscode-azureterraform", |
|||
"redhat.vscode-yaml", |
|||
"timonwong.shellcheck", |
|||
"yzhang.markdown-all-in-one" |
|||
] |
|||
} |
|||
} |
|||
} |
@ -1,12 +1,2 @@ |
|||
# These are supported funding model platforms |
|||
|
|||
github: dgibbs64 # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] |
|||
patreon: dgibbs # Replace with a single Patreon username |
|||
open_collective: # Replace with a single Open Collective username |
|||
ko_fi: # Replace with a single Ko-fi username |
|||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel |
|||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry |
|||
liberapay: # Replace with a single Liberapay username |
|||
issuehunt: # Replace with a single IssueHunt username |
|||
otechie: # Replace with a single Otechie username |
|||
custom: # Replace with a single custom sponsorship URL |
|||
github: dgibbs64 |
|||
patreon: dgibbs |
|||
|
@ -1,8 +1,12 @@ |
|||
# Set update schedule for GitHub Actions |
|||
--- |
|||
version: 2 |
|||
updates: |
|||
- package-ecosystem: "github-actions" |
|||
directory: "/" |
|||
schedule: |
|||
# Check for updates to GitHub Actions every weekday |
|||
interval: "daily" |
|||
interval: "weekly" |
|||
|
|||
- package-ecosystem: "devcontainers" |
|||
directory: "/" |
|||
schedule: |
|||
interval: weekly |
|||
|
Loading…
Reference in new issue