Commit 8cca42ff authored by tom's avatar tom

add workflows for new and stale issues

parent a14bb025
name: Move new issues into Triage
on:
issues:
types:
- labeled
jobs:
automate-project-columns:
runs-on: ubuntu-latest
if: github.event.label.name == 'triage'
steps:
- uses: alex-page/github-project-automation-plus@v0.8.3
with:
project: Front-end tasks
column: Triage
repo-token: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
name: Close inactive issues
on:
schedule:
- cron: "55 1 * * *"
jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
# issues
only-issue-labels: "need info"
days-before-issue-stale: 14
days-before-issue-close: 7
stale-issue-label: "stale"
stale-issue-message: "This issue is stale because it has been open for 14 days with no activity."
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
# pull requests
days-before-pr-stale: -1
days-before-pr-close: -1
# other settings
repo-token: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment