mirror of
https://github.com/zen-browser/theme-store.git
synced 2025-07-07 08:55:31 +02:00
chore: Rebuild themes.json after theme submission
This commit is contained in:
parent
039f6cb2cf
commit
b560273840
3 changed files with 62 additions and 0 deletions
35
.github/workflows/submit-pr.yml
vendored
Normal file
35
.github/workflows/submit-pr.yml
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
|
||||
on:
|
||||
pull_request:
|
||||
types: [closed]
|
||||
|
||||
jobs:
|
||||
submitPR:
|
||||
permissions: write-all
|
||||
name: Rebuild themes after theme submission
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.x'
|
||||
|
||||
- name: Setup Git
|
||||
run: |
|
||||
git config --global user.name "github-actions[bot]"
|
||||
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
||||
|
||||
- name: Rebuild all themes
|
||||
run: |
|
||||
python3 scripts/rebuild-themes.py
|
||||
|
||||
- name: Commit changes
|
||||
run: |
|
||||
git add themes.json
|
||||
git commit -m "Rebuild themes.json after theme submission"
|
||||
git push
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue