mirror of
https://github.com/Azure/setup-kubectl.git
synced 2025-12-13 13:41:15 +00:00
Bumps the actions group in /.github/workflows with 2 updates: [github/codeql-action](https://github.com/github/codeql-action) and [actions/stale](https://github.com/actions/stale). Updates `github/codeql-action` from 3.30.5 to 3.30.6 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](3599b3baa1...64d10c1313) 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: github/codeql-action dependency-version: 3.30.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - 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>
30 lines
1.1 KiB
YAML
30 lines
1.1 KiB
YAML
name: setting-default-labels
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0/3 * * *'
|
|
|
|
jobs:
|
|
label-issues:
|
|
runs-on: ubuntu-latest
|
|
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
|