Add CI script to check for diffs in src vs build for store release #200
Workflow file for this run
This file contains 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: bot | |
on: | |
pull_request: | |
types: [labeled] | |
jobs: | |
approve: | |
if: "! startsWith(github.event.head_commit.message, '[CI Skip]') && (!github.event.pull_request || github.event.pull_request.head.repo.full_name == github.repository)" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: jacogr/action-approve@795afd1dd096a2071d7ec98740661af4e853b7da | |
with: | |
authors: jacogr, TarikGul | |
labels: -auto | |
token: ${{ secrets.GH_PAT_BOT }} |