Skip to content

Commit

Permalink
Create rebuild-on-update.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Multipixels committed Aug 28, 2023
1 parent ab74a8a commit 1efe6a1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/rebuild-on-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Rebuild on Theme Update

on:
repository_dispatch:
types: [theme_update]
workflow_dispatch:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: stefanzweifel/git-auto-commit-action@v4
with:
# Optional. Commit message for the created commit.
# Defaults to "Apply automatic changes"
commit_message: "Bulk Commit - Theme Update"
commit_options: '--no-verify --signoff --allow-empty'
skip_dirty_check: true
push_options: --force

0 comments on commit 1efe6a1

Please sign in to comment.