-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GRAL-4409 added issue auto-close workflow
- Loading branch information
1 parent
9ebac7b
commit 9540beb
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Auto-close stale issues | ||
|
||
on: | ||
schedule: | ||
- cron: "0 7 * * 0" # Runs the action on Sundays at 7am UTC | ||
|
||
jobs: | ||
close-stale-issues: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Close stale issues | ||
uses: actions/stale@v5 | ||
with: | ||
days-before-stale: 150 # 5 months | ||
days-before-close: 30 # 30 days after marking stale (total of 6 months) | ||
stale-issue-message: "This issue has been marked as stale due to inactivity. It will be closed in 30 days if no further activity occurs." | ||
close-issue-message: "Closing this issue due to 6 months of inactivity." | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?php | ||
require_once('/path/to/pipedrive/vendor/autoload.php'); |