forked from ss220-space/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ss220-space:master220' into master220
- Loading branch information
Showing
3,274 changed files
with
1,285,909 additions
and
246,036 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: 'Testmerge Conflict Detection' | ||
|
||
on: | ||
push: | ||
branches: | ||
- testmerge | ||
pull_request_target: | ||
types: [ready_for_review, opened, synchronize, reopened] | ||
|
||
jobs: | ||
triage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Git checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
fetch-depth: 0 | ||
ref: testmerge | ||
- name: Check for testmerge conflicts | ||
id: check | ||
run: | | ||
git config --local user.email "action@github.com" | ||
git config --local user.name "Testmerge Conflict Detection" | ||
git fetch origin pull/${{ github.event.number }}/head:PR${{ github.event.number }} | ||
git merge --no-commit --no-ff PR${{ github.event.number }} || true | ||
CONFLICTS=$(git ls-files -u | wc -l) | ||
if [ "$CONFLICTS" -gt 0 ] ; then | ||
echo "There is a merge conflict. Aborting" | ||
git merge --abort | ||
echo "success=0" >> $GITHUB_OUTPUT | ||
exit 0 | ||
fi | ||
echo "success=1" >> $GITHUB_OUTPUT | ||
- name: Label PR | ||
uses: jburgess/AddRemovePrLabels@v1.0.4 | ||
if: steps.check.outputs.success == 0 | ||
with: | ||
githubToken: '${{ secrets.GITHUB_TOKEN }}' | ||
labelsToAdd: 'Testmerge Conflict' | ||
- name: Unlabel PR | ||
uses: jburgess/AddRemovePrLabels@v1.0.4 | ||
if: steps.check.outputs.success == 1 | ||
with: | ||
githubToken: '${{ secrets.GITHUB_TOKEN }}' | ||
labelsToRemove: 'Testmerge Conflict' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Check Potential Conflicts | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master220 | ||
|
||
jobs: | ||
build: | ||
name: potential-conflicts-checker | ||
runs-on: ubuntu-latest | ||
permissions: write-all | ||
steps: | ||
- uses: outsideris/potential-conflicts-checker-action@0.1.0 | ||
with: | ||
ghToken: ${{ secrets.GITHUB_TOKEN }} |
Oops, something went wrong.