8000 Added lock threads workflow by pkittenis · Pull Request #215 · ParallelSSH/ssh2-python · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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