Do we still need system Python with new Nuitka? #2339
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Labels | |
"on": | |
workflow_call: | |
inputs: | |
extra-label-files: | |
required: false | |
type: string | |
# Restrict all project-related activities to the main branch. | |
push: | |
branches: | |
- main | |
concurrency: | |
# Group workflow jobs so new commits cancels in-progress execution triggered by previous commits. | |
# Source: https://mail.python.org/archives/list/[email protected]/thread/PCBCQMJF64JGRBOX7E2EE4YLKHT4DI55/ | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
labels: | |
name: Sync labels | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Sync labels | |
uses: julb/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
skip_delete: true | |
from: | | |
https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labels.yaml | |
${{ inputs.extra-label-files }} | |
${{ ( startsWith(github.event.repository.name, 'awesome-') | |
&& github.event.repository.name != 'awesome-template' && | |
'https://raw.githubusercontent.com/kdeldycke/workflows/main/.github/labels-awesome.yaml' ) || '' }} |