Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/triage_board.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: 'Update PR Triage Board'

on:
schedule:
- cron: '0 * * * *' # Run every hour
workflow_dispatch:

jobs:
pr-triage:
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This job should have limited permissions; possibly none since it will be using the GitHub App to do its work.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catches, I will fix.

runs-on: ubuntu-latest
steps:
- name: Update PR Triage Board
uses: yuvipanda/pr-triage-board-bot@main
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are there really no tags? We prefer pinning to commits that correspond to tags with a dependabot update for stable reproducible workflows.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also should be jupyter now, not yuvipanda.

with:
organization: 'matplotlib'
project-number: '11'
gh-app-id: '3339145'
gh-app-installation-id: '122963236'
gh-app-private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
Loading