Riddhi Bhagwat
commited on
Commit
·
ceefc61
1
Parent(s):
01997f5
Initial commit
Browse files- .github/workflows/auto-assign.yml +19 -0
- .github/workflows/proof-html.yml +11 -0
- README.md +4 -0
- index.html +1 -0
- package.json +9 -0
.github/workflows/auto-assign.yml
ADDED
@@ -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: riddhibhagwat
|
19 |
+
numOfAssignee: 1
|
.github/workflows/proof-html.yml
ADDED
@@ -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
ADDED
@@ -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
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
<h1>Welcome to the website generated by my demo repository</h1>
|
package.json
ADDED
@@ -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 |
+
}
|