fix(drawing): fix remove drawing elements the control when not remove… #1657
Workflow file for this run
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: 🎬 Setup | |
on: | |
push: | |
branches: [dev] | |
pull_request: | |
branches: [dev] | |
permissions: | |
pull-requests: read | |
jobs: | |
set-pr-info: | |
name: set PR info | |
runs-on: ubuntu-latest | |
steps: | |
- name: Save PR info | |
run: | | |
echo ${{ github.event.pull_request.number }} > ./pr-id.txt | |
echo ${{ github.head_ref }} >> ./pr-ref.txt | |
echo ${{ github.event.pull_request.head.repo.full_name || github.repository }} >> ./pr-repo.txt | |
- name: Upload PR number | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pr-id | |
path: ./pr-id.txt | |
- name: Upload PR ref | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pr-ref | |
path: ./pr-ref.txt | |
- name: Upload PR repo | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pr-repo | |
path: ./pr-repo.txt |