mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
f678ae2146
* Switch issues locking to github actions Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
23 lines
385 B
YAML
23 lines
385 B
YAML
name: 'Lock Threads'
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '13 23 * * *'
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
issues: write
|
|
|
|
concurrency:
|
|
group: lock
|
|
|
|
jobs:
|
|
action:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dessant/lock-threads@v3
|
|
with:
|
|
process-only: 'issues'
|
|
issue-inactive-days: '180'
|
|
github-token: ${{ secrets.PROMBOT_LOCKTHREADS_TOKEN }}
|