mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-30 21:00:49 -07:00
There's still a bug where it will expire too soon when idle *after* a reminder has been sent. Fixes #11873 @SoftFever Every person who pushes a commit will get a dumb email until this merges (uhm, provided it actually works).
24 lines
558 B
YAML
24 lines
558 B
YAML
name: Assign Issue
|
|
|
|
on:
|
|
schedule:
|
|
- cron: 0 0 * * *
|
|
issue_comment:
|
|
types: [created]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
assign:
|
|
permissions:
|
|
issues: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Assign the user or unassign stale assignments
|
|
uses: takanome-dev/assign-issue-action@3.0.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
maintainers: 'noisyfox,softfever'
|
|
days_until_unassign: 30
|
|
block_assignment: false
|
|
reminder_days: 20
|
|
max_assignments: 12
|