Browse Source

run workflows only when pull requests are approved AND pngs are modified.

pull/73/head
ron1n 2 years ago
parent
commit
a6a3528fd6
  1. 9
      .github/workflows/release_zip.yml

9
.github/workflows/release_zip.yml

@ -1,8 +1,15 @@
name: Stickers/Emotes Continuous Delivery
on: push
on:
pull_request:
types:
- closed
paths:
- '**.png'
jobs:
build-zips:
name: Build zip packages
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout repo

Loading…
Cancel
Save