Skip to content

Commit 639cd09

Browse files
committed
Add workflows.
1 parent 45c1541 commit 639cd09

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: PR Checklist
2+
3+
on:
4+
pull_request:
5+
types: [opened, edited, reopened, synchronize]
6+
7+
jobs:
8+
check-pr-template:
9+
name: Check PR template
10+
uses: beeware/.github/.github/workflows/pr-checklist.yml@main

.github/workflows/new-issue.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: New issue
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
- reopened
8+
- transferred
9+
10+
jobs:
11+
add-to-project:
12+
name: Add issue to BeeWare project
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/add-to-project@v2.0.0
16+
with:
17+
project-url: https://github.com/orgs/beeware/projects/1
18+
github-token: ${{ secrets.BRUTUS_PAT_TOKEN }}

0 commit comments

Comments
 (0)