Skip to content

Commit

Permalink
ci: auto setup of PRs and issues (#724)
Browse files Browse the repository at this point in the history
###### Description of changes

Auto-assign the GH project to issues and pull requests. Plus, move them
to the appropriate columns.
  • Loading branch information
digorithm authored Jul 13, 2023
1 parent 294f91b commit e3ddd07
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/opened-issues-triage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Move new issues into Triage

on:
issues:
types: [opened]

jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- uses: alex-page/[email protected]
with:
project: SDK
column: 🔍 Triage
repo-token: ${{ secrets.GITHUB_TOKEN }}
15 changes: 15 additions & 0 deletions .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Move assigned pull requests into To do

on:
pull_request:
types: [opened]

jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- uses: alex-page/[email protected]
with:
project: SDK
column: 👀 In review
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e3ddd07

Please sign in to comment.