https://github.com/python/cpython/commit/37d16f7f620d79af7db1c00c8d638122af889bf9
commit: 37d16f7f620d79af7db1c00c8d638122af889bf9
branch: main
author: Stan Ulbrych <[email protected]>
committer: ezio-melotti <[email protected]>
date: 2025-10-04T07:09:37+02:00
summary:

Replace workflow with project automations (#136831)

Remove unnecessary workflow

files:
D .github/workflows/project-updater.yml

diff --git a/.github/workflows/project-updater.yml 
b/.github/workflows/project-updater.yml
deleted file mode 100644
index 1d9d637ec848a6..00000000000000
--- a/.github/workflows/project-updater.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-name: Update GH projects
-
-on:
-  issues:
-    types:
-      - opened
-      - labeled
-
-permissions:
-  contents: read
-
-jobs:
-  add-to-project:
-    name: Add issues to projects
-    runs-on: ubuntu-latest
-    timeout-minutes: 10
-    strategy:
-      fail-fast: false
-      matrix:
-        include:
-          # if an issue has any of these labels, it will be added
-          # to the corresponding project
-          - { project:  2, label: "release-blocker, deferred-blocker" }
-          - { project: 32, label: sprint }
-
-    steps:
-      - uses: actions/[email protected]
-        with:
-          project-url: https://github.com/orgs/python/projects/${{ 
matrix.project }}
-          github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
-          labeled: ${{ matrix.label }}

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to