Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0544d8c

Browse files
committed
MAINT: Add PR triage board action
Adds a github action to manage the PR Triage Board set up at https://github.com/orgs/matplotlib/projects/11
1 parent 04371c0 commit 0544d8c

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/triage_board.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: 'Update PR Triage Board'
3+
4+
on:
5+
schedule:
6+
- cron: '0 * * * *' # Run every hour
7+
workflow_dispatch:
8+
9+
jobs:
10+
pr-triage:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Update PR Triage Board
14+
uses: yuvipanda/pr-triage-board-bot@main
15+
with:
16+
organization: 'matplotlib'
17+
project-number: '11'
18+
gh-app-id: '3339145'
19+
gh-app-installation-id: '122963236'
20+
gh-app-private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}

0 commit comments

Comments
 (0)