Skip to content

Commit

Permalink
Added lock threads workflow (#215)
Browse files Browse the repository at this point in the history
* Added lock threads workflow
* Updated appveyor cfg
  • Loading branch information
pkittenis authored Jan 23, 2025
1 parent 0009e7c commit a61495c
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,15 @@ deploy_script:
# Calling twine requires we set path
- "SET PATH=%PYTHON_DEF%;%PYTHON_DEF%\\Scripts;%PATH%"
- python ci/appveyor/pypi_upload.py *.whl


deploy:
- provider: Environment
name: production
on:
branch: master

- provider: Environment
name: production
on:
APPVEYOR_REPO_TAG: true
23 changes: 23 additions & 0 deletions .github/workflows/lock-threads.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Lock Threads'

on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:

permissions:
issues: write
pull-requests: write
discussions: write

concurrency:
group: lock-threads

jobs:
action:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v5
with:
exclude-any-issue-labels: 'help wanted, upstream, PR welcome, api implementation'
process-only: 'issues'

0 comments on commit a61495c

Please sign in to comment.