Skip to content
This repository was archived by the owner on Apr 25, 2024. It is now read-only.

Commit 4ed7e53

Browse files
committed
Syncing .github folder
1 parent 63caa72 commit 4ed7e53

30 files changed

+1179
-1022
lines changed

.buildpath

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<buildpath>
3-
<buildpathentry kind="src" path=""/>
4-
</buildpath>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<buildpath>
3+
<buildpathentry kind="src" path=""/>
4+
</buildpath>

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @crazy-max
1+
* @N6REJ

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github: N6REJ
2+
custom: https://www.paypal.me/BearLeeAble

.github/auto-comment.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Comment to a new issue.
2+
issueOpened: >
3+
Thank your for raising a issue. We will try and get back to you as soon as possible.
4+
5+
Please make sure you have given us as much context as possible.
6+
7+
pullRequestOpened: >
8+
Thank your for raising your pull request.
9+
10+
Please make sure you have followed our contributing guidelines. We will review it as soon as possible

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
time: "08:00"
8+
timezone: "America/Chicago"
9+
labels:
10+
- ":game_die: dependencies"
11+
- ":robot: bot"

.github/labels.yml

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
## more info https://github.com/crazy-max/ghaction-github-labeler
2+
- # bot
3+
name: ":robot: bot"
4+
color: "69cde9"
5+
description: ""
6+
- # bug
7+
name: ":bug: bug"
8+
color: "b60205"
9+
description: ""
10+
- # dependencies
11+
name: ":game_die: dependencies"
12+
color: "0366d6"
13+
description: ""
14+
- # documentation
15+
name: ":memo: documentation"
16+
color: "c5def5"
17+
description: ""
18+
- # duplicate
19+
name: ":busts_in_silhouette: duplicate"
20+
color: "cccccc"
21+
description: ""
22+
- # enhancement
23+
name: ":sparkles: enhancement"
24+
color: "0054ca"
25+
description: ""
26+
- # feature request
27+
name: ":bulb: feature request"
28+
color: "0e8a16"
29+
description: ""
30+
- # feedback
31+
name: ":mega: feedback"
32+
color: "03a9f4"
33+
description: ""
34+
- # future maybe
35+
name: ":rocket: future maybe"
36+
color: "fef2c0"
37+
description: ""
38+
- # good first issue
39+
name: ":hatching_chick: good first issue"
40+
color: "7057ff"
41+
description: ""
42+
- # help wanted
43+
name: ":pray: help wanted"
44+
color: "4caf50"
45+
description: ""
46+
- # hold
47+
name: ":hand: hold"
48+
color: "24292f"
49+
description: ""
50+
- # invalid
51+
name: ":no_entry_sign: invalid"
52+
color: "e6e6e6"
53+
description: ""
54+
- # maybe bug
55+
name: ":interrobang: maybe bug"
56+
color: "ff5722"
57+
description: ""
58+
- # needs more info
59+
name: ":thinking: needs more info"
60+
color: "795548"
61+
description: ""
62+
- # question
63+
name: ":question: question"
64+
color: "3f51b5"
65+
description: ""
66+
- # upstream
67+
name: ":eyes: upstream"
68+
color: "fbca04"
69+
description: ""
70+
- # wontfix
71+
name: ":coffin: wontfix"
72+
color: "ffffff"
73+
description: ""

.github/stale.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 60
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 14
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- pinned
8+
- security
9+
# Label to use when marking an issue as stale
10+
staleLabel: wontfix
11+
# Comment to post when marking an issue as stale. Set to `false` to disable
12+
markComment: >
13+
This issue has been automatically marked as stale because it has not had
14+
recent activity. It will be closed if no further activity occurs within the next 14days. Thank you
15+
for your contributions.
16+
# Comment to post when closing a stale issue. Set to `false` to disable
17+
closeComment: >
18+
This issue closed by stalebot.

.github/workflows/create-labels.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Create labels
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
- 'master'
8+
paths:
9+
- '.github/labels.yml'
10+
- '.github/workflows/create-labels.yml'
11+
12+
jobs:
13+
labeler:
14+
runs-on: ubuntu-latest
15+
steps:
16+
-
17+
name: Checkout
18+
uses: actions/checkout@v2
19+
-
20+
name: Run Labeler
21+
if: success()
22+
uses: crazy-max/ghaction-github-labeler@v3.1.1

.github/workflows/file-sync.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: File sync
2+
3+
on: push
4+
5+
jobs:
6+
sync-files:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v2
11+
12+
- name: Push files to another repository
13+
uses: timthedev07/copy_file_to_another_repo_action@v1.33.0
14+
env:
15+
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
16+
with:
17+
source_file: '/.github'
18+
user_name: 'Bearsampp'
19+
user_email: 'programming@hallhome.us'
20+
destination_repo: 'Bearsampp\website'
21+
destination_folder: '/.github'

.project

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<projectDescription>
3-
<name>module-gitlist</name>
4-
<comment></comment>
5-
<projects>
6-
</projects>
7-
<buildSpec>
8-
</buildSpec>
9-
<natures>
10-
</natures>
11-
</projectDescription>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>module-gitlist</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
</buildSpec>
9+
<natures>
10+
</natures>
11+
</projectDescription>

0 commit comments

Comments
 (0)