Switch pr workflow back to pull_request_target

5bda6eac13835b033ea4cda27475ac0de3676e26

Wolfsblvt <wolfsblvt@gmail.com>

1 files changed, +7 -2Showing whitespace changes
.github/workflows/pr-auto-manager.yml+7 -2
@@ -1,8 +1,7 @@
1name: 🔀 Pull Request Manager1name: 🔀 Pull Request Manager
22
3on:3on:
4 workflow_dispatch:4 pull_request_target:
5 pull_request: # TODO: This is for texting, and should not be merged into staging. Staging should use 'pull_request_target'
6 types: [opened, synchronize, reopened, edited, labeled, unlabeled, closed]5 types: [opened, synchronize, reopened, edited, labeled, unlabeled, closed]
7 pull_request_review_comment:6 pull_request_review_comment:
8 types: [created]7 types: [created]
@@ -91,6 +90,12 @@ jobs:
91 # Only runs on comments not done by the github actions bot90 # Only runs on comments not done by the github actions bot
92 if: github.event_name == 'pull_request_review_comment' && github.actor != 'github-actions[bot]'91 if: github.event_name == 'pull_request_review_comment' && github.actor != 'github-actions[bot]'
9392
93 # Override permissions, issue labeler needs issues write access
94 permissions:
95 contents: read
96 issues: write
97 pull-requests: write
98
94 steps:99 steps:
95 - name: Remove Stale Label100 - name: Remove Stale Label
96 # 🤖 Issues Helper101 # 🤖 Issues Helper