generated from neurobagel/react-bagel
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (25 loc) · 1.04 KB
/
handle_external_pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Label pull requests from forks
on:
pull_request_target:
types: [opened]
jobs:
handle_external_pr:
# Only run this entire workflow if the PR was opened from a forked repo
# The reasoning is that both bots and external contributors have to make
# a fork of the repo before they can open a PR because they don't have
# write access to the repo.
if: github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
steps:
- name: Label pull request with "_community"
run: gh pr edit ${{ github.event.pull_request.number }} -R ${{ github.repository }} --add-label "_community"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
handle_precommit_pr:
if: contains(github.event.pull_request.title, '[pre-commit.ci]')
runs-on: ubuntu-latest
steps:
- name: Label pull request with "_bot"
run: gh pr edit ${{ github.event.pull_request.number }} -R ${{ github.repository }} --add-label "_bot"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}