deps(go): bump github.com/aws/aws-sdk-go-v2/service/ssm from 1.52.1 to 1.52.7 #871
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
name: 'Stale issue handler' | |
on: | |
workflow_dispatch: | |
issue_comment: | |
schedule: | |
- cron: '0 0 * * *' | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
# See https://github.com/actions/stale#all-options | |
with: | |
exempt-all-milestones: true | |
days-before-stale: 60 | |
days-before-close: 14 | |
stale-issue-message: | | |
This issue is stale because it has been open for 60 days with no | |
activity. If it is no longer relevant or necessary, please close it. | |
Given no action, it will be closed in 14 days. | |
If it's still relevant, one of the following will remove the stale | |
marking: | |
- A maintainer can add this issue to a milestone to indicate that | |
it's been accepted and will be worked on | |
- A maintainer can remove the `stale` label | |
- Anyone can post an update or other comment | |
stale-pr-message: | | |
This pull request is stale because it has been open for 60 days with | |
no activity. If it is no longer relevant or necessary, please close | |
it. Given no action, it will be closed in 14 days. | |
If it's still relevant, one of the following will remove the stale | |
marking: | |
- A maintainer can add this pull request to a milestone to indicate | |
that it's been accepted and will be worked on | |
- A maintainer can remove the `stale` label | |
- Anyone can post an update or other comment | |
- Anyone with write access can push a commit to the pull request | |
branch |