mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-21 23:47:58 +00:00
f14c354468
- Update README with Dijital Kurdistan Tech Institute author - Fix lock.yml to use github.token instead of GH_PAT_BOT - Rename push-master.yml to push-main.yml for main branch - Add workflow_dispatch triggers for manual runs
25 lines
763 B
YAML
25 lines
763 B
YAML
name: 'Lock Threads'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '25 2/3 * * *'
|
|
|
|
jobs:
|
|
lock:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dessant/lock-threads@v5
|
|
with:
|
|
github-token: ${{ github.token }}
|
|
issue-inactive-days: '7'
|
|
issue-comment: >
|
|
This thread has been automatically locked since there has not been
|
|
any recent activity after it was closed. Please open a new issue
|
|
if you think you have a related problem or query.
|
|
pr-inactive-days: '2'
|
|
pr-comment: >
|
|
This pull request has been automatically locked since there
|
|
has not been any recent activity after it was closed.
|
|
Please open a new issue for related bugs.
|