Skip to content

Commit 1302233

Browse files
author
SecurityBTC_JodHqesh_amanciojsilvjr
authored
Initial commit
0 parents  commit 1302233

File tree

6 files changed

+65
-0
lines changed

6 files changed

+65
-0
lines changed

.github/auto-assign.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Set to true to add reviewers to PRs
2+
addReviewers: true
3+
4+
# Set to 'author' to add PR's author as a assignee
5+
addAssignees: author
6+
7+
# A list of reviewers to be added to PRs (GitHub user name)
8+
reviewers:
9+
- SecurityBTC
10+
11+
# A number of reviewers added to the PR
12+
# Set 0 to add all the reviewers (default: 0)
13+
numberOfReviewers: 1
14+
15+
# A list of assignees, overrides reviewers if set
16+
assignees:
17+
- SecurityBTC
18+
19+
# A number of assignees to add to the PRs
20+
# Set to 0 to add all of the assignees.
21+
# Uses numberOfReviewers if unset.
22+
numberOfAssignees: 0
23+
24+
# A list of keywords to be skipped the process if PR's title include it
25+
skipKeywords:
26+
- wip

.github/workflows/auto-assign.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Auto Assign
2+
on:
3+
issues:
4+
types: [opened]
5+
pull_request:
6+
types: [opened]
7+
jobs:
8+
run:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: bubkoo/auto-assign@v1
12+
with:
13+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14+
CONFIG_FILE: .github/auto-assign.yml

.github/workflows/proof-html.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Proof HTML
2+
on:
3+
push:
4+
workflow_dispatch:
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: anishathalye/proof-html@v1.1.0
10+
with:
11+
directory: ./

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Welcome to your organization's demo respository
2+
This code repository (or "repo") is designed to demonstrate the best GitHub has to offer with the least amount of noise.
3+
4+
The repo includes an `index.html` file (so it can render a web page), two GitHub Actions workflows, and a CSS stylesheet dependency.

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<h1>Welcome to the website generated by my demo repository</h1>

package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "demo-repo",
3+
"version": "0.2.0",
4+
"description": "A sample package.json",
5+
"dependencies": {
6+
"@primer/css": "17.0.1"
7+
},
8+
"license": "MIT"
9+
}

0 commit comments

Comments
 (0)