Skip to content

Commit a555ccc

Browse files
committed
added comments
1 parent 7744703 commit a555ccc

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/diff_protobin.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
name: Diff Protobin
22

33
on:
4+
# This event occurs when there is activity on a pull request
45
pull_request_target:
6+
# This filter looks for files that have been changed with the suffix bin or guildpoint
57
paths:
68
- '**/*.bin'
79
- '**/*.guildpoint'
8-
types: [opened, synchronize, ready_for_review]
10+
# To reduce noise, this filter restricts to the default activity plus when a draft is changed to open
11+
# Default activity types as listed in the documentation are "opened, synchronize, and reopened"
12+
# https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#pull_request_target
13+
types: [opened, ready_for_review, reopened, synchronize]
914
jobs:
1015
custom-diff:
1116
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)