27d304ebf8
Bumps the actions group in /.github/workflows with 4 updates: [actions/stale](https://github.com/actions/stale), [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actionsx/prettier](https://github.com/actionsx/prettier). Updates `actions/stale` from 3 to 9 - [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/v3...v9) Updates `actions/checkout` from 1 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v1...v4) Updates `actions/setup-python` from 2 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2...v5) Updates `actionsx/prettier` from 2 to 3 - [Release notes](https://github.com/actionsx/prettier/releases) - [Commits](https://github.com/actionsx/prettier/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actionsx/prettier dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
30 lines
985 B
YAML
30 lines
985 B
YAML
name: setting-default-labels
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0/3 * * *'
|
|
|
|
jobs:
|
|
label-issues:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
name: Setting issue as idle
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-issue-message: 'This issue is idle because it has been open for 14 days with no activity.'
|
|
stale-issue-label: 'idle'
|
|
days-before-stale: 14
|
|
days-before-close: -1
|
|
operations-per-run: 100
|
|
exempt-issue-labels: 'backlog'
|
|
|
|
- uses: actions/stale@v9
|
|
name: Setting PR as idle
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-pr-message: 'This PR is idle because it has been open for 14 days with no activity.'
|
|
stale-pr-label: 'idle'
|
|
days-before-stale: 14
|
|
days-before-close: -1
|
|
operations-per-run: 100
|