We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 369d0f6 commit c053ab5Copy full SHA for c053ab5
.github/workflows/process-pull-request.yml
@@ -6,7 +6,7 @@
6
name: Pull Request Checker
7
8
on:
9
- pull_request:
+ pull_request_target:
10
branches:
11
- '**'
12
- '!mainline'
@@ -39,7 +39,9 @@ jobs:
39
/usr/bin/pip3 install gitPython
40
python -c "import sys; import git; print(sys.version)"
41
git fetch origin ${{ github.base_ref }}
42
- git fetch origin ${{ github.head_ref }}
+ if ! git fetch origin ${{ github.head_ref }}; then
43
+ echo "Unable to checkout ${{ github.head_ref }}"
44
+ fi
45
git remote add linux https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
46
git fetch --shallow-since="3 years ago" linux
47
echo "Will run process-git-request.rb with:"
0 commit comments