1
0
Fork 0
mirror of https://github.com/kou029w/zenn.dev.git synced 2025-01-19 00:18:01 +00:00
zenn.dev/.github/workflows/stale.yml

20 lines
572 B
YAML
Raw Normal View History

2021-09-04 01:19:53 +09:00
name: stale
on:
2022-07-09 20:41:03 +09:00
workflow_dispatch:
schedule:
- cron: "0 1 * * MON"
2021-09-04 01:19:53 +09:00
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
stale-issue-message: このIssueは最終更新日から365日以上経過しています。
days-before-stale: 365
2022-07-09 20:41:03 +09:00
- name: Reactivation
run: |
gh workflow disable --repo "${GITHUB_REPOSITORY}" "${GITHUB_WORKFLOW}"
gh workflow enable --repo "${GITHUB_REPOSITORY}" "${GITHUB_WORKFLOW}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}