EnvisionPlay #3
This file contains hidden or 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: Import approved showcase content | |
| on: | |
| issues: | |
| types: [opened, labeled] | |
| permissions: | |
| actions: write | |
| contents: write | |
| issues: write | |
| jobs: | |
| import: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install image tools | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y ffmpeg python3-pil | |
| - name: Import approved showcase issue | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| APPROVED_LABEL: approved | |
| BUILD_WORKFLOW: main.yml | |
| TARGET_BRANCH: master | |
| run: | | |
| python3 .github/scripts/import-approved-experiment.py |