Skip to content

Commit

Permalink
chore: add .github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
hongxuchen committed Oct 7, 2023
1 parent 6a7e928 commit 0be3b40
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
@@ -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: hongxuchen
numOfAssignee: 1
11 changes: 11 additions & 0 deletions .github/workflows/proof-html.yml
Original file line number Diff line number Diff line change
@@ -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: ./

0 comments on commit 0be3b40

Please sign in to comment.