We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d570d41 commit edeff60Copy full SHA for edeff60
.github/workflows/pr-triage.yml
@@ -1,8 +1,10 @@
1
name: PR Triage
2
3
on:
4
- pull_request_target:
5
- types: [opened, reopened]
+ push:
+ branches:
6
+ - '**' # All branches
7
+ - '!main' # Exclude main if needed
8
workflow_dispatch:
9
inputs:
10
pr_number:
@@ -16,6 +18,7 @@ permissions:
16
18
17
19
jobs:
20
triage-pr:
21
+ if: github.event.pull_request != null || inputs.pr_number != '' # Only run if it's part of a PR or pr_number is provided
22
uses: OpenSwiftUIProject/github-workflows/.github/workflows/pr-triage.yml@main
23
with:
24
# fromJSON workaround number inputs: https://github.com/orgs/community/discussions/67182#discussioncomment-8617964
0 commit comments