Skip to content

Commit 843990f

Browse files
committed
Github workflows
1 parent 6d8e18e commit 843990f

File tree

3 files changed

+53
-0
lines changed

3 files changed

+53
-0
lines changed

.github/auto-assign.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Set to true to add reviewers to PRs
2+
addReviewers: true
3+
4+
# Set to 'author' to add PR's author as a assignee
5+
addAssignees: author
6+
7+
# A list of reviewers to be added to PRs (GitHub user name)
8+
reviewers:
9+
- heloufir
10+
- octocat
11+
12+
# A number of reviewers added to the PR
13+
# Set 0 to add all the reviewers (default: 0)
14+
numberOfReviewers: 1
15+
16+
# A list of assignees, overrides reviewers if set
17+
assignees:
18+
- heloufir
19+
- octocat
20+
21+
# A number of assignees to add to the PRs
22+
# Set to 0 to add all of the assignees.
23+
# Uses numberOfReviewers if unset.
24+
numberOfAssignees: 0
25+
26+
# A list of keywords to be skipped the process if PR's title include it
27+
skipKeywords:
28+
- wip

.github/workflows/auto-assign.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
steps:
11+
- uses: wow-actions/auto-assign@v1
12+
with:
13+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14+
CONFIG_FILE: .github/auto-assign.yml

.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: ./

0 commit comments

Comments
 (0)