mirror of
https://github.com/Azure/setup-helm.git
synced 2025-10-18 08:36:35 +00:00
Bumps the actions group in /.github/workflows with 1 update: [actions/stale](https://github.com/actions/stale).
Updates `actions/stale` from 10.0.0 to 10.1.0
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](3a9db7e6a4...5f858e3efb
)
---
updated-dependencies:
- dependency-name: actions/stale
dependency-version: 10.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: actions
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
name: setting-default-labels
|
|
|
|
# Controls when the action will run.
|
|
on:
|
|
schedule:
|
|
- cron: '0 0/3 * * *'
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
jobs:
|
|
build:
|
|
# The type of runner that the job will run on
|
|
runs-on: ubuntu-latest
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
steps:
|
|
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 #v10.1.0
|
|
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@5f858e3efba33a5ca4407a664cc011ad407f2008 #v10.1.0
|
|
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
|