meta: add metadata
Blah blah Signed-off-by: Yongmin Hong <revi@omglol.email>
This commit is contained in:
parent
63d76fd42d
commit
b931e41135
6 changed files with 103 additions and 0 deletions
26
.github/FUNDING.yml
vendored
Normal file
26
.github/FUNDING.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
# These are supported funding model platforms
|
||||
|
||||
github: revi
|
||||
# Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
||||
patreon: revinim
|
||||
# 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: revi
|
||||
# Replace with a single Liberapay username
|
||||
issuehunt:
|
||||
# Replace with a single IssueHunt username
|
||||
lfx_crowdfunding:
|
||||
# Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
|
||||
polar:
|
||||
# Replace with a single Polar username
|
||||
buy_me_a_coffee:
|
||||
# Replace with a single Buy Me a Coffee username
|
||||
custom:
|
||||
# Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
13
.github/dependabot.yml
vendored
Normal file
13
.github/dependabot.yml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
# https://stuff.revi.xyz/u/dependabot
|
||||
# for documentation link
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
|
||||
# Maintain dependencies for GitHub Actions
|
||||
- package-ecosystem: "github-actions"
|
||||
# Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.)
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
labels: []
|
22
.github/workflows/yamlLint.yml
vendored
Normal file
22
.github/workflows/yamlLint.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
name: YAML Lint
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- '**.yml'
|
||||
- '**.yaml'
|
||||
- '.yamllint'
|
||||
pull_request:
|
||||
paths:
|
||||
- '**.yml'
|
||||
- '**.yaml'
|
||||
- '.yamllint'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
lint-everything:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: yaml-lint
|
||||
uses: ibiqlik/action-yamllint@v3
|
36
.yamllint
Normal file
36
.yamllint
Normal file
|
@ -0,0 +1,36 @@
|
|||
---
|
||||
|
||||
yaml-files:
|
||||
- '*.yaml'
|
||||
- '*.yml'
|
||||
- '.yamllint'
|
||||
|
||||
rules:
|
||||
anchors: enable
|
||||
braces: enable
|
||||
brackets: enable
|
||||
colons: enable
|
||||
commas: enable
|
||||
comments:
|
||||
level: warning
|
||||
comments-indentation:
|
||||
level: warning
|
||||
document-end: disable
|
||||
document-start: disable
|
||||
empty-lines: enable
|
||||
empty-values: disable
|
||||
float-values: disable
|
||||
hyphens: enable
|
||||
indentation: enable
|
||||
key-duplicates: enable
|
||||
key-ordering: disable
|
||||
line-length:
|
||||
level: warning
|
||||
new-line-at-end-of-file:
|
||||
level: warning
|
||||
new-lines: enable
|
||||
octal-values: disable
|
||||
quoted-strings: disable
|
||||
trailing-spaces: enable
|
||||
truthy:
|
||||
level: warning
|
3
CODE_OF_CONDUCT.md
Normal file
3
CODE_OF_CONDUCT.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# [Don’t be an asshole, and don’t be tolerant of assholes.](https://asshole.fyi/)
|
||||
|
||||
That simple.
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# sandbox
|
||||
|
||||
For things slightly more important than gist of pastebin, but not really worth their own repo lands here.
|
Loading…
Reference in a new issue