Skip to content

Commit

Permalink
switched the action to use aws-actions/stale-issue-cleanup due to com…
Browse files Browse the repository at this point in the history
…plex and unnecessary permissions issues from the prior action used

Signed-off-by: Mark Cohen <[email protected]>
  • Loading branch information
macohen authored and AbdulR3hman committed May 22, 2024
1 parent ccb6b9b commit a61ab10
Showing 1 changed file with 17 additions and 21 deletions.
38 changes: 17 additions & 21 deletions .github/workflows/stalled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,23 @@ 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 == 'awslabs/aws-athena-query-federation'
cleanup:
runs-on: ubuntu-latest
name: Stale PRs
steps:
- name: GitHub App token
id: github_app_token
uses: tibdex/[email protected]
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
installation_id: 22958780
- name: Stale PRs
uses: actions/stale@v9
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
- uses: aws-actions/stale-issue-cleanup@v3
with:
stale-pr-message: This PR has been open without activity for more than 30 days. Labeling this issue stalled. Please close the PR if it is no longer necessary.
stale-issue-label: stalled
exempt-issue-labels: awaiting-approval
stale-pr-label: no-pr-activity
exempt-pr-labels: awaiting-approval
response-requested-label: response-requested

closed-for-staleness-label: closed-for-staleness

stale-pr-label: 'stalled'
stale-pr-message: 'This PR is stalled because it has been open for 30 days with no activity.'
days-before-stale: 30
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a61ab10

Please sign in to comment.