/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/locker.yml
39 строк
1 KB
dependabot[bot]
[main] (deps): Bump actions/checkout from 6.0.3 to 7.0.0 (#67317)
19 июн 2026, 17:36
Не верифицирован
19 июн 2026, 17:36
1a72384
Код
Авторство
О чём код?
name: Locker - Lock stale issues on: schedule: - cron: '34 12 * * 1-5' # Once per weekday, overnight PT, uncommon minute of hour workflow_dispatch: # Manual triggering through the GitHub UI, API, or CLI inputs: daysSinceClose: required: true default: "30" daysSinceUpdate: required: true default: "30" permissions: issues: write pull-requests: write jobs: main: runs-on: ubuntu-latest if: ${{ github.repository_owner == 'dotnet' }} steps: - name: Checkout Actions uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: repository: "microsoft/vscode-github-triage-actions" path: ./actions ref: 066bee9cefa6f0b4bf306040ff36fc7d96a6d56d # Pin to commit: https://github.com/microsoft/vscode-github-triage-actions/commit/066bee9cefa6f0b4bf306040ff36fc7d96a6d56d - name: Install Actions run: npm install --production --prefix ./actions - name: Run Locker uses: ./actions/locker with: daysSinceClose: ${{ fromJson(inputs.daysSinceClose || 30) }} daysSinceUpdate: ${{ fromJson(inputs.daysSinceUpdate || 30) }} ignoredLabel: "Bot: Do Not Lock" typeIs: issue