Skip to content

Commit 42c9efa

Browse files
authored
Merge pull request #1 from unixorn/initial-code-drop
Initial code drop
2 parents de3d4cf + f15c1cd commit 42c9efa

File tree

5 files changed

+488
-123
lines changed

5 files changed

+488
-123
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!--- Provide a general summary of your changes in the Title above -->
2+
3+
# Description
4+
5+
<!--- Describe your changes in detail -->
6+
7+
# Type of changes
8+
9+
<!--- What types of changes does your submission introduce? Put an `x` in all the boxes that apply: [x] -->
10+
11+
- [ ] Add/update an entry
12+
- [ ] Text cleanups/updates
13+
- [ ] Test updates
14+
15+
# License Acceptance
16+
17+
- [ ] This repository is Attribution-NonCommercial-ShareAlike licensed and by making this PR, I am contributing my changes to the repository under the terms of the CC BY-NC-SA license. See [License](https://github.com/unixorn/internet-of-trash/blob/main/LICENSE) for more details.
18+
19+
# Checklist
20+
21+
<!--- Go over all the following points, and put an `x` in all the boxes that apply. [x] -->
22+
<!--- If you're unsure about any of these, don't hesitate to ask. I'm happy to help! -->
23+
24+
- [ ] All new and existing tests pass.
25+
- [ ] I have confirmed that the link(s) in my PR are valid.

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
# Use `allow` to specify which dependencies to maintain
3+
4+
version: 2
5+
updates:
6+
- package-ecosystem: "github-actions"
7+
directory: "/"
8+
schedule:
9+
interval: "weekly"
10+
11+
- package-ecosystem: "pip"
12+
directory: "/"
13+
schedule:
14+
interval: "weekly"

.github/workflows/awesomebot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Check links in README
3+
4+
on:
5+
push:
6+
branches: [ '*' ]
7+
pull_request:
8+
branches: [ '*' ]
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
# Full git history is needed to get a proper list of changed files
19+
# within `mega-linter`
20+
fetch-depth: 0
21+
- uses: docker://dkhamsing/awesome_bot:latest
22+
with:
23+
args: /github/workspace/README.md --allow-ssl --allow 500,501,502,503,504,509,521 --allow-dupe --allow-redirect --request-delay 1 --white-list https://github,https://img.shields.io

0 commit comments

Comments
 (0)