Initial commit
This commit is contained in:
19
.github/workflows/auto-assign.yml
vendored
Normal file
19
.github/workflows/auto-assign.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
name: Auto Assign
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened]
|
||||||
|
pull_request:
|
||||||
|
types: [opened]
|
||||||
|
jobs:
|
||||||
|
run:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
pull-requests: write
|
||||||
|
steps:
|
||||||
|
- name: 'Auto-assign issue'
|
||||||
|
uses: pozil/auto-assign-issue@v1
|
||||||
|
with:
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
assignees: blackboxprogramming
|
||||||
|
numOfAssignee: 1
|
||||||
11
.github/workflows/proof-html.yml
vendored
Normal file
11
.github/workflows/proof-html.yml
vendored
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
name: Proof HTML
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
workflow_dispatch:
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: anishathalye/proof-html@v1.1.0
|
||||||
|
with:
|
||||||
|
directory: ./
|
||||||
4
README.md
Normal file
4
README.md
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# Welcome to your organization's demo respository
|
||||||
|
This code repository (or "repo") is designed to demonstrate the best GitHub has to offer with the least amount of noise.
|
||||||
|
|
||||||
|
The repo includes an `index.html` file (so it can render a web page), two GitHub Actions workflows, and a CSS stylesheet dependency.
|
||||||
1
index.html
Normal file
1
index.html
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<h1>Welcome to the website generated by my demo repository</h1>
|
||||||
9
package.json
Normal file
9
package.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"name": "demo-repo",
|
||||||
|
"version": "0.2.0",
|
||||||
|
"description": "A sample package.json",
|
||||||
|
"dependencies": {
|
||||||
|
"@primer/css": "17.0.1"
|
||||||
|
},
|
||||||
|
"license": "MIT"
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user