forked from opensearch-project/OpenSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow to add stalled label and message (opensearch-project#10197)
* add workflow to add stalled label and message Signed-off-by: Poojita Raj <poojiraj@amazon.com>
- Loading branch information
1 parent
e617da3
commit 8807d7a
Showing
1 changed file
with
28 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,28 @@ | ||
name: Label Stalled PRs | ||
on: | ||
schedule: | ||
- cron: '15 15 * * *' # Run every day at 15:15 UTC / 7:15 PST / 8:15 PDT | ||
permissions: | ||
pull-requests: write | ||
jobs: | ||
stale: | ||
if: github.repository == 'opensearch-project/OpenSearch' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: GitHub App token | ||
id: github_app_token | ||
uses: tibdex/github-app-token@v2.1.0 | ||
with: | ||
app_id: ${{ secrets.APP_ID }} | ||
private_key: ${{ secrets.APP_PRIVATE_KEY }} | ||
installation_id: 22958780 | ||
- name: Stale PRs | ||
uses: actions/stale@v8 | ||
with: | ||
repo-token: ${{ steps.github_app_token.outputs.token }} | ||
stale-pr-label: 'stalled' | ||
stale-pr-message: 'This PR is stalled because it has been open for 30 days with no activity.' | ||
days-before-pr-stale: 30 | ||
days-before-issue-stale: -1 | ||
days-before-pr-close: -1 | ||
days-before-issue-close: -1 |