Skip to content

Commit

Permalink
create pr
Browse files Browse the repository at this point in the history
  • Loading branch information
shinny-mayanqiong committed Jul 21, 2021
1 parent 6c4df5f commit aebd0bf
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/run-tqsdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,40 @@ jobs:
SOURCE_DIR: "build/doc"
DEST_DIR: ${{ env.DOC_DIR }}

tqsdk-python:
name: tqsdk-python commit and pr
needs: deploy-on-linux
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
repository: shinny-mayanqiong/learn_svg
ref: master
token: ${{ secrets.GH_PAT }}

- name: Download sdist
uses: actions/download-artifact@v2
with:
name: sdist-file
path: ../

- name: unzip
shell: bash
run: |
cd ..
tar -x -f *.tar.gz
cp -R "tqsdk-${{ github.event.client_payload.tag_name }}/" tqsdk-ci
cd tqsdk-ci
git status
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
commit-message: "Update Version ${{ github.event.client_payload.tag_name }}"
branch-suffix: short-commit-hash
title: '[Tqsdk-Ci] Update Version ${{ github.event.client_payload.tag_name }}'

summary:
name: summary CI result
needs: deploy-on-linux
Expand Down

0 comments on commit aebd0bf

Please sign in to comment.