Skip to content

Commit 7b2a686

Browse files
Merge pull request #84 from james-gates-0212/82-add-auto-assign-action
82 add auto assign action
2 parents 7c091d5 + d747ea6 commit 7b2a686

File tree

5 files changed

+35
-0
lines changed

5 files changed

+35
-0
lines changed

.github/workflows/auto-assign.yml

Lines changed: 19 additions & 0 deletions
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: james-gates-0212
19+
numOfAssignee: 1
File renamed without changes.

.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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
![Auto Assign](https://github.com/james-gates-0212/portfolio/actions/workflows/auto-assign.yml/badge.svg)
2+
![Deploy Next.js site to Pages](https://github.com/james-gates-0212/portfolio/actions/workflows/deploy-nextjs-site-to-pages.yml/badge.svg)
3+
![Next.js Bundle Analysis](https://github.com/james-gates-0212/portfolio/actions/workflows/nextjs-bundle-analysis.yml/badge.svg)
4+
![Proof HTML](https://github.com/james-gates-0212/portfolio/actions/workflows/proof-html.yml/badge.svg)
5+
16
# ❤️Portfolio based on Next.js & tailwindcss
27

38
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

0 commit comments

Comments
 (0)