Compare commits

...

2 Commits

  1. 27
      .devcontainer/devcontainer.json
  2. 14
      .github/FUNDING.yml
  3. 10
      .github/dependabot.yml
  4. 4
      .github/workflows/update-copyright-years-in-license-file.yml

27
.devcontainer/devcontainer.json

@ -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"
]
}
}
}

14
.github/FUNDING.yml

@ -1,12 +1,2 @@
# These are supported funding model platforms github: dgibbs64
patreon: dgibbs
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

10
.github/dependabot.yml

@ -1,8 +1,12 @@
# Set update schedule for GitHub Actions ---
version: 2 version: 2
updates: updates:
- package-ecosystem: "github-actions" - package-ecosystem: "github-actions"
directory: "/" directory: "/"
schedule: schedule:
# Check for updates to GitHub Actions every weekday interval: "weekly"
interval: "daily"
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly

4
.github/workflows/update-copyright-years-in-license-file.yml

@ -4,9 +4,11 @@ on:
schedule: schedule:
- cron: "0 3 1 1 *" # 03:00 AM on January 1 - cron: "0 3 1 1 *" # 03:00 AM on January 1
permissions:
contents: write
jobs: jobs:
update-license-year: update-license-year:
if: github.repository_owner == 'GameServerManagers'
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout

Loading…
Cancel
Save