Skip to content

Commit 26c0173

Browse files
authored
Initial commit
0 parents  commit 26c0173

File tree

5 files changed

+44
-0
lines changed

5 files changed

+44
-0
lines changed

.github/workflows/auto-assign.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
permissions:
11+
issues: write
12+
pull-requests: write
13+
steps:
14+
- name: 'Auto-assign issue'
15+
uses: pozil/auto-assign-issue@v1
16+
with:
17+
repo-token: ${{ secrets.GITHUB_TOKEN }}
18+
assignees: ladooniani
19+
numOfAssignee: 1

.github/workflows/proof-html.yml

+11
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/[email protected]
10+
with:
11+
directory: ./

README.md

+4
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

+1
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

+9
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)