Skip to content

Commit 3a227dd

Browse files
authored
get cooked tbh
1 parent 8562e76 commit 3a227dd

File tree

5 files changed

+74
-3
lines changed

5 files changed

+74
-3
lines changed

.github/labels.yml

Whitespace-only changes.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: TriageOps - Labels Manager
2+
3+
on:
4+
push:
5+
branches:
6+
- 'main'
7+
paths:
8+
- '.github/labels.yml'
9+
- '.github/workflows/triageops-labels.yml'
10+
pull_request:
11+
paths:
12+
- '.github/labels.yml'
13+
- '.github/workflows/triageops-labels.yml'
14+
15+
jobs:
16+
labeler:
17+
runs-on: ubuntu-latest
18+
permissions:
19+
contents: read
20+
issues: write
21+
steps:
22+
- name: Checkout
23+
uses: actions/checkout@v4
24+
- name: Automate labels management
25+
uses: crazy-max/ghaction-github-labeler@v5
26+
with:
27+
github-token: ${{ secrets.GITHUB_TOKEN }}
28+
yaml-file: .github/labels.yml
29+
dry-run: ${{ github.event_name == 'pull_request' }}
30+
exclude: |
31+
help*
32+
*issue

CODE_OF_CONDUCT.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This project adheres to [the **RecapTime.dev Community Code of Conduct**](https://policies.recaptime.dev/community/code-of-conduct)
44
(based on the [Contributor Covenant](https://www.contributor-covenant.org/version/2/1/code_of_conduct.html)), alongside the
55
[**Hack Club Code of Conduct**](https://hackclub.com/conduct) in making our community spaces more inclusive and civil. Please review
6-
them before you participate, and don't hesitate to reach out to TBD.
6+
them before you participate, and don't hesitate to reach out to the maintainers below.
77

88
## Reporting abusive behavior
99

@@ -15,4 +15,15 @@ You can report abusive behavior to one of the project maintainers privately:
1515
| --- | --- | --- |
1616
| @your-username-here | [email protected] | ... |
1717

18-
Alternatively, you can email `[email protected]`
18+
Alternatively, you can email `[email protected]` (which is monitored by
19+
both Recap Time Squad and community maintainers as [Support Desk] tickets in
20+
GitLab) to report abusive behavior.
21+
22+
## Questions?
23+
24+
See [the appendicies on edge cases and FAQs][appendix], as well as
25+
[community and platform-specific guidelines][platform-guidelines] for more information.
26+
27+
[appendix]: https://policies.recaptime.dev/community/code-of-conduct/appendix
28+
[platform-guidelines]: https://policies.recaptime.dev/community/code-of-conduct/platform-specifics
29+
[Support Desk]: https://gitlab.com/recaptime-dev/internal/moderation

CONTRIBUTING.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Contributing to the Project
2+
3+
## Prerequisites
4+
5+
Mention required dependencies, tools, or software versions needed to contribute. Also link the Linux DCO and CCoC.
6+
7+
## Setting up devenv
8+
9+
Include steps in setting up the development environment. This may include cloning the repository, installing dependencies, and configuring the environment.
10+
11+
Alternatively, you can link to cloud development envrionments like GitHub Codespaces via their button badges.

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
1+
# RecapTime.dev base repository template
2+
3+
---
4+
15
# $PROJECT_NAME
26

3-
Project description here
7+
Project description here, plus any badges + banner
8+
9+
## Usage
10+
11+
Basic usage docs here, then link to docs
12+
13+
```bash
14+
# install + usage
15+
```
16+
17+
## Resources
18+
19+
Docs, contributing guidelines, etc.
420

521
## License
622

723
MPL-2.0/AGPL-3.0/other OSI-approved license in SPDX-License-Identifier format
24+
(replace LICENSE contents to match if needed)

0 commit comments

Comments
 (0)