Files
hawkbit/.github/workflows/stale.yaml
dependabot[bot] 8f802ecf2b Bump actions/stale from 10.2.0 to 10.3.0 (#3094)
Bumps [actions/stale](https://github.com/actions/stale) from 10.2.0 to 10.3.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/stale/compare/v10.2.0...v10.3.0)

---
updated-dependencies:
- dependency-name: actions/stale
  dependency-version: 10.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 09:52:03 +03:00

32 lines
928 B
YAML

name: Mark & close stale issues
on:
# enable running the workflow manually
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
permissions:
contents: read
issues: write
# only needed if marking PRs as stale
# pull-requests: write
jobs:
stale:
# only on original eclipse-hawkbit/hawkbit repo
if: github.repository == 'eclipse-hawkbit/hawkbit'
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10.3.0
with:
repo-token: ${{ secrets.PAT_SECRET }}
# disables automatic marking of issues as stale
days-before-stale: -1
days-before-close: 15
stale-issue-label: 'awaiting'
close-issue-message: |-
There has been no response from the original author so I closed this issue.
Please reach out if you have or find the answers we need so that we can investigate further.
only-labels: 'awaiting'