From 582cce2a740c3acaba8ee40869f443d60c737cb3 Mon Sep 17 00:00:00 2001 From: Panos Date: Thu, 23 Jan 2025 01:51:56 +0000 Subject: [PATCH 1/2] Added lock threads workflow --- .github/workflows/lock-threads.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/lock-threads.yml diff --git a/.github/workflows/lock-threads.yml b/.github/workflows/lock-threads.yml new file mode 100644 index 00000000..6963fa0a --- /dev/null +++ b/.github/workflows/lock-threads.yml @@ -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' From fad04c63696477e6a0be0b9f567ca94921849df9 Mon Sep 17 00:00:00 2001 From: Panos Date: Thu, 23 Jan 2025 02:00:59 +0000 Subject: [PATCH 2/2] Updated appveyor cfg --- .appveyor.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 80117c46..a3a4ca89 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -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