workflows

This commit is contained in:
Xikaro 2024-12-22 22:44:39 +05:00
parent 33286316cb
commit 2db45f5c1a
2 changed files with 4 additions and 12 deletions

View file

@ -167,10 +167,6 @@ jobs:
- name: 📝 Generate Github Summary
uses: WcAServices/markdown-template-action@v1.1.0
with:
variables: >-
if [ -n "${{ steps.read_diff.outputs.diff != '' }}" ]; then
DIFF="${{ steps.read_diff.outputs.diff }}"
fi
template: |
📃 **Name**: ${{ steps.project_name.outputs.value }}
📃 **Release**: ${{ steps.project_version.outputs.value }}
@ -178,7 +174,7 @@ jobs:
📃 **Game Version**: ${{ env.MINECRAFT_VERSION }}
${{ steps.changelog.outputs.description }}
$DIFF
${{ steps.read_diff.outputs.diff }}
build-modpack:

View file

@ -1,5 +1,5 @@
name: Project Build
run-name: "Project Build #${{ github.run_number }}"
name: Pull Request
run-name: "Pull Request #${{ github.run_number }}"
on:
push:
branches:
@ -166,10 +166,6 @@ jobs:
- name: 📝 Generate Github Summary
uses: WcAServices/markdown-template-action@v1.1.0
with:
variables: >-
if [ -n "${{ steps.read_diff.outputs.diff != '' }}" ]; then
DIFF="${{ steps.read_diff.outputs.diff }}"
fi
template: |
📃 **Name**: ${{ steps.project_name.outputs.value }}
📃 **Release**: ${{ steps.project_version.outputs.value }}
@ -177,5 +173,5 @@ jobs:
📃 **Game Version**: ${{ env.MINECRAFT_VERSION }}
${{ steps.changelog.outputs.description }}
$DIFF
${{ steps.read_diff.outputs.diff }}