diff options
author | sudoforge <no-reply@sudoforge.com> | 2024-07-21 17:19:06 -0700 |
---|---|---|
committer | sudoforge <no-reply@sudoforge.com> | 2024-07-21 17:24:22 -0700 |
commit | eef62798e9d83733d34662f633d7c2d13797a53b (patch) | |
tree | 7034f7e0af41b8be9405ef7e3cbfdedcbf740462 /.github/workflows | |
parent | 00f5265a7bac771ae5d4e30b6ce9590229632375 (diff) | |
download | git-bug-eef62798e9d83733d34662f633d7c2d13797a53b.tar.gz |
fix: add missing `with` property to //.github/workflows:cron.yml
Change-Id: I32844f07bc825dfd2c364e402e21262a6f9cb519
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/cron.yml | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index a52d094b..96274f16 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -12,17 +12,18 @@ jobs: issues: write steps: - uses: actions/stale@v9 - stale-issue-label: lifecycle/stale - stale-pr-label: lifecycle/stale - days-before-stale: 90 - days-before-close: 30 - stale-issue-message: | - This bot triages untriaged issues and PRs according to the following rules: + with: + stale-issue-label: lifecycle/stale + stale-pr-label: lifecycle/stale + days-before-stale: 90 + days-before-close: 30 + stale-issue-message: | + This bot triages untriaged issues and PRs according to the following rules: - - After 90 days of inactivity, the `lifecycle/stale` label is applied - - After 30 days of inactivity since `lifecycle/stale` was applied, the issue is closed + - After 90 days of inactivity, the `lifecycle/stale` label is applied + - After 30 days of inactivity since `lifecycle/stale` was applied, the issue is closed - To remove the stale status, you can: + To remove the stale status, you can: - - Remove the `lifecycle/stale` label - - Comment on this issue + - Remove the `lifecycle/stale` label + - Comment on this issue |