Sunshine/.github/workflows/pull-requests.yml

33 lines
1.0 KiB
YAML
Raw Normal View History

2022-08-07 23:33:19 +00:00
---
2022-07-29 21:45:02 -04:00
# This action is centrally managed in https://github.com/<organization>/.github/
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
# the above-mentioned repo.
2022-12-31 22:38:46 -05:00
# Ensure PRs are made against `nightly` branch.
2021-12-16 10:39:14 -05:00
name: Pull Requests
on:
pull_request_target:
types: [opened, synchronize, edited, reopened]
2023-01-02 10:12:06 -05:00
# no concurrency for pull_request_target events
2022-12-31 22:38:46 -05:00
2021-12-16 10:39:14 -05:00
jobs:
check-pull-request:
2021-12-16 10:39:14 -05:00
name: Check Pull Request
2022-12-10 10:27:26 -05:00
if: startsWith(github.repository, 'LizardByte/')
2021-12-16 10:39:14 -05:00
runs-on: ubuntu-latest
steps:
- uses: Vankka/pr-target-branch-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2021-12-16 10:39:14 -05:00
with:
target: master
2022-08-07 23:33:19 +00:00
exclude: nightly # Don't prevent going from nightly -> master
change-to: nightly
comment: |
2022-07-29 21:45:02 -04:00
Your PR was set to `master`, PRs should be sent to `nightly`.
The base branch of this PR has been automatically changed to `nightly`.
Please check that there are no merge conflicts