mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-28 15:30:31 +00:00
update workflow (#2151)
This commit is contained in:
parent
f4b19bae5f
commit
5047c7a408
1 changed files with 9 additions and 2 deletions
11
.github/workflows/validate-pull.yml
vendored
11
.github/workflows/validate-pull.yml
vendored
|
@ -28,13 +28,20 @@ jobs:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 2
|
fetch-depth: 0
|
||||||
ref: ${{ github.event.pull_request.head.ref }}
|
ref: ${{ github.event.pull_request.head.ref }}
|
||||||
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
||||||
|
|
||||||
- name: Get changes
|
- name: Get changes
|
||||||
id: get-changes
|
id: get-changes
|
||||||
run: echo "files=$(git diff --name-only HEAD^ | xargs)" >> $GITHUB_OUTPUT
|
run: |
|
||||||
|
git remote add -f upstream https://github.com/Kometa-Team/Kometa.git
|
||||||
|
git remote update
|
||||||
|
if [[ ${{ github.event.action }} == "labeled" ]]; then
|
||||||
|
echo "files=$(git diff --name-only upstream/nightly HEAD | xargs)" >> $GITHUB_OUTPUT
|
||||||
|
else
|
||||||
|
echo "files=$(git diff --name-only HEAD^ | xargs)" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
- name: List changed files
|
- name: List changed files
|
||||||
id: list-changes
|
id: list-changes
|
||||||
|
|
Loading…
Reference in a new issue