Skip to content

Commit

Permalink
fix: add workflows for new issues and pull requests (#628)
Browse files Browse the repository at this point in the history
  • Loading branch information
Schalk Neethling authored Nov 1, 2021
1 parent d40dfe1 commit 8d07fc6
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 Issues Awaiting Triage

on:
issues:
types: [opened]

jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.8.1
with:
project: MDN Web Docs
column: Issues Awaiting Triage
repo-token: ${{ secrets.GH_TOKEN }}
15 changes: 15 additions & 0 deletions .github/workflows/opened-pull-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Move opened pull requests to Ready for Review

on:
pull_request:
types: [opened]

jobs:
automate-project-columns:
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.8.1
with:
project: MDN Web Docs
column: Ready for Review
repo-token: ${{ secrets.GH_TOKEN }}

0 comments on commit 8d07fc6

Please sign in to comment.