Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

python-3.13-sync-with-cpython#296

python-3.13-sync-with-cpython

python-3.13-sync-with-cpython #296

name:python-3.13-sync-with-cpython
on:
push:
branches:
-"3.13"
schedule:
-cron:"0 0 * * *"
jobs:
sync:
runs-on:ubuntu-latest
env:
VERSION:"3.13"
BRANCH:"cron/sync/3.13"
steps:
-uses:actions/checkout@v4
with:
ref:${{ env.VERSION }}
-name:Get the changes on branch (if exists)
continue-on-error:true
run:|
git fetch origin ${{ env.BRANCH }}:${{ env.BRANCH }}
git reset --hard ${{ env.BRANCH }}
-name:Set env
run:echo "LATEST_COMMIT_ID=$(git ls-remote https://github.com/python/CPython.git $VERSION | head -c 8)" >> $GITHUB_ENV
-name:Install Dependencies
run:sudo apt-get install gettext
-name:Install uv
uses:astral-sh/setup-uv@v6
-name:Sync with CPython
run:make clone merge rm_cpython wrap
-uses:tibdex/github-app-token@v2
id:generate-token
with:
app_id:${{ secrets.APP_ID }}
private_key:${{ secrets.APP_PRIVATE_KEY }}
-name:Create Pull Request
id:cpr
uses:peter-evans/create-pull-request@v6
with:
token:${{ steps.generate-token.outputs.token }}
commit-message:sync with cpython ${{ env.LATEST_COMMIT_ID }}
committer:GitHub <noreply@github.com>
author:github-actions[bot] <github-actions[bot]@users.noreply.github.com>
base:${{ env.VERSION }}
branch:${{ env.BRANCH }}
delete-branch:false
title:"Sync with CPython ${{ env.VERSION }}"
body:|
Sync with CPython ${{ env.VERSION }}
draft:true
labels:|
sync-cpython
automation
-name:Check outputs
run:|
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"

[8]ページ先頭

©2009-2025 Movatter.jp