Initial commit

This commit is contained in:
Alexa Amundson
2025-11-19 14:59:12 -06:00
committed by GitHub
commit fc547d46eb
5 changed files with 44 additions and 0 deletions

19
.github/workflows/auto-assign.yml vendored Normal file
View 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
View 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
View 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
View File

@@ -0,0 +1 @@
<h1>Welcome to the website generated by my demo repository</h1>

9
package.json Normal file
View 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"
}