Remind assignee of issue #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Remind assignee of issue" | |
| on: | |
| schedule: | |
| - cron: "0 0 * * 0" # Once a week | |
| workflow_dispatch: | |
| jobs: | |
| clean-up: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10 | |
| with: | |
| stale-issue-message: "This is a reminder that you assigned yourself to this issue to create a new module / new subworkflow. Please remove yourself from the Assignees if you do not plan to work on this anymore." | |
| days-before-stale: 178 | |
| any-of-labels: "new module,new subworkflow" | |
| exempt-issue-labels: "WIP,awaiting-changes,awaiting-feedback,wishlist" |