Add jiripolasek.qr-codes to gallery (#6) #5
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: Generate Extension Gallery | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "extensions/**" | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| generate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install dependencies | |
| run: pip install -r .github/scripts/requirements.txt | |
| - name: Generate extensions gallery | |
| run: python .github/scripts/generate.py | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| commit-message: "chore: regenerate extensions gallery" | |
| title: "chore: regenerate extensions gallery" | |
| body: | | |
| Automated update of `extensions.json` after changes to `extensions/`. | |
| This PR was created automatically by the gallery generation workflow. | |
| branch: auto/update-gallery | |
| delete-branch: true | |
| sign-commits: true | |
| add-paths: extensions.json |