Adding upstream version 1.34.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e393c3af3f
commit
4978089aab
4963 changed files with 677545 additions and 0 deletions
24
.github/workflows/pr-target-branch.yml
vendored
Normal file
24
.github/workflows/pr-target-branch.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
name: Target Branch
|
||||
on:
|
||||
pull_request:
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
- synchronize
|
||||
- edited
|
||||
|
||||
jobs:
|
||||
check-target-master:
|
||||
name: master
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: debug
|
||||
run: echo Target is ${{ github.event.pull_request.base.ref }}
|
||||
- name: success
|
||||
if: github.event.pull_request.base.ref == 'master'
|
||||
run: exit 0
|
||||
- name: error
|
||||
if: github.event.pull_request.base.ref != 'master'
|
||||
run: |
|
||||
echo "Pull-request is not based on master, please rebase"
|
||||
exit 1
|
Loading…
Add table
Add a link
Reference in a new issue