Skip to content

Commit

Permalink
⚡️ initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasLarson committed Sep 8, 2020
0 parents commit b7f6919
Show file tree
Hide file tree
Showing 16 changed files with 1,327 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve.
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to . . . .
2. Click on . . . .
3. Scroll down to . . . .
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [like iOS]
- Browser [like chrome, safari]
- Version [like 22]

**Smartphone (please complete the following information):**
- Device: [like iPhone6]
- OS: [like iOS8.1]
- Browser [like stock browser, safari]
- Version [like 22]

**Additional context**
Add any other context about the problem here.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
# Issue template
# https://web.archive.org/web/20200705094743id_/docs.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository#configuring-the-template-chooser
blank_issues_enabled: true
contact_links:
- name: Bug report
url: bug_report.md
about: Please report project-specific bugs here.
- name: Feature request
url: feature_request.md
about: Please submit new feature ideas here.
- name: GitHub Community Support
url: https://gh.neting.ccmunity/
about: Please ask and answer questions here.
- name: GitHub Security Bug Bounty
url: https://bounty.github.com/
about: Please report security vulnerabilities here.
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Feature request
about: Suggest an idea for this project.
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. For example, “I’m
always frustrated when . . .”.

**Describe the solution you’d like**
A clear and concise description of what you want to happen.

**Describe alternatives you’ve considered**
A clear and concise description of any alternative solutions or features you’ve considered.

**Additional context**
Add any other context or screenshots about the feature request here.
98 changes: 98 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
---
# 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://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:

# Maintain dependencies for Bundler
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for Cargo
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for Composer
- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for Docker
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for Elm
- package-ecosystem: "elm"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for git submodule
- package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for Go modules
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for Gradle
- package-ecosystem: "gradle"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for Maven
- package-ecosystem: "maven"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for Mix
- package-ecosystem: "mix"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for npm
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for NuGet
- package-ecosystem: "nuget"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for pip
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for Terraform
- package-ecosystem: "terraform"
directory: "/"
schedule:
interval: "daily"
11 changes: 11 additions & 0 deletions .github/funding.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
github: LucasLarson
patreon: lucaslarson
open_collective: lucaslarson
ko_fi: lucaslarson
tidelift: # 1 Tidelift platform-name/package-name like `npm/babel`
community_bridge: # 1 Community Bridge project-name like `cloud-foundry`
liberapay: LucasLarson
issuehunt: lucaslarson
otechie: # 1 Otechie username
custom: # ≤ 4 custom sponsorship URLs like `['link1', 'link2']`
14 changes: 14 additions & 0 deletions .github/workflows/checklinks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Check Markdown links

on: push

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-verbose-mode: 'yes'
base-branch: 'main'
51 changes: 51 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
---
###########################
###########################
## Linter GitHub Actions ##
###########################
###########################
name: Lint Code Base

#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#

#############################
# Start the job on all push #
#############################
on:
push:
branches-ignore: # [main]
pull_request:
branches: [main]

###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest

##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v2

################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: docker://github/super-linter:v3
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24 changes: 24 additions & 0 deletions .github/workflows/optimize-images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Optimize images
on:
# push:
# XXX Wait for https://github.com/calibreapp/image-actions/pull/30 to trigger
# on push to default branch.
pull_request:
paths:
- '**.jpg'
- '**.jpeg'
- '**.png'
- '**.webp'
- '**.gif'

jobs:

optimize-images:
name: calibreapp/image-actions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.2
- uses: calibreapp/image-actions@1.1.0
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
30 changes: 30 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: Autofix
on:
push:
# Only targets develop branch to avoid amplification effects of auto-fixing
# the exact same stuff in multiple non-rebased branches.
branches:
- 'main'

jobs:

typos:
name: Fix spelling and create a PR
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.2
- uses: sobolevn/misspell-fixer-action@0.1.0
- uses: peter-evans/create-pull-request@v3
with:
author: "Lucas Larson <LucasLarson@riseup.net>"
commit-message: "[autofix] spelling"
title: "[autofix] spelling"
body: >
[Auto-generated on run
#${{ github.run_id }}](https://github.com/${{ github.repository
}}/actions/runs/${{ github.run_id }}) as defined by [workflow
action](https://github.com/${{ github.repository
}}/blob/${{ github.base_ref }}/.github/workflows/spellcheck.yml).
assignees: LucasLarson
branch: autofix-spelling
25 changes: 25 additions & 0 deletions .github/workflows/yamllint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: YAML Lint
on:
push:
pull_request:

jobs:

yamllint:
name: Lint YAML files
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.2
- name: YAML Lint
uses: ibiqlik/action-yamllint@v1.0.0
with:
strict: true
config_data: |
extends: default
rules:
truthy:
allowed-values: ['true', 'false', 'on']
env:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
### Zsh ###
# Zsh compiled script + zrecompile backup
*.zwc
*.zwc.old

# Zsh completion-optimization dumpfile
*zcompdump*

# Zsh zcalc history
.zcalc_history

# A popular plugin manager’s files
._zplugin
.zplugin_lstupd

# zdharma/zshelldoc tool’s files
zsdoc/data

# robbyrussell/oh-my-zsh/plugins/per-directory-history plugin’s files
# (when set-up to store the history in the local directory)
.directory_history

# MichaelAquilina/zsh-autoswitch-virtualenv plugin’s files
# (for Zsh plugins using Python)
.venv

# Zunit test output
/tests/_output/*
!/tests/_output/.gitkeep
Loading

0 comments on commit b7f6919

Please sign in to comment.