Compare commits

...

4 commits

Author SHA1 Message Date
Derek "Turtle" Roe 999a0e8749
Merge 8ea073c339 into d48ea3b72b 2024-04-20 08:38:13 +00:00
Derek "Turtle" Roe 8ea073c339 Fix some YAML warnings 2024-04-20 03:38:09 -05:00
Derek "Turtle" Roe 4af9f0d227 Fix some YAML warnings and update Throne link 2024-04-20 03:37:53 -05:00
Derek "Turtle" Roe fffff1d0fa Hopefully fix it for actual real 2024-04-20 03:27:45 -05:00
3 changed files with 42 additions and 25 deletions

3
.github/FUNDING.yml vendored
View file

@ -1,3 +1,4 @@
---
github: derekturtleroe
ko_fi: DerekTurtleRoe
custom: ['https://paypal.me/vgturtle127', 'https://twitch.tv/subs/derekturtleroe', 'https://throne.me/u/derekturtleroe']
custom: ['https://paypal.me/vgturtle127', 'https://twitch.tv/subs/derekturtleroe', 'https://throne.com/derekturtleroe']

View file

@ -24,15 +24,15 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.

View file

@ -1,17 +1,33 @@
name: Super-Linter
on: push
jobs:
super-lint:
name: Lint code base
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run Super-Linter
uses: github/super-linter@v4
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
---
name: Lint
on: # yamllint disable-line rule:truthy
push: null
pull_request: null
permissions: { }
jobs:
build:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Super-linter
uses: super-linter/super-linter@v6.4.0 # x-release-please-version
env:
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}