mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-30 04:40:47 -07:00
v3.0.0 of takanome-dev/assign-issue-action is broken: - action.yml references dist/index.js - But the release only contains dist/index.mjs - This causes immediate failure: "File not found: dist/index.js" This PR: 1. Reverts to v2.2 which works correctly 2. Reverts reminder_days to 7 (v2.2 behavior: days before unassignment) 3. Adds comment with link to upstream bug report Bug report: https://github.com/takanome-dev/assign-issue-action/issues/426 Fixes #11873 Co-authored-by: Hanan <okets78@hotmail.com>
26 lines
715 B
YAML
26 lines
715 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
|
|
# Note: v3.0.0 is broken (dist/index.mjs vs action.yml expects index.js)
|
|
# See: https://github.com/takanome-dev/assign-issue-action/issues/426
|
|
uses: takanome-dev/assign-issue-action@v2.2
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
maintainers: 'noisyfox,softfever'
|
|
days_until_unassign: 30
|
|
block_assignment: false
|
|
reminder_days: 7
|
|
max_assignments: 12
|