suite3
Some checks failed
dotnet package / build (8.0.x) (push) Successful in 1m11s
Main Build Process / Build & Test (pull_request) Has been cancelled

This commit is contained in:
2024-08-26 15:55:00 +02:00
parent 857a618e40
commit 097b7e4340

View File

@@ -23,8 +23,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- name: Check out the code
uses: actions/checkout@v4
with:
@@ -71,7 +69,21 @@ jobs:
with:
message: |
Release ${{ github.sha }}
- name: Comment on Gitea PR
env:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
GITEA_URL: https://gitea.borealian.ovh
REPO_OWNER: mcmuzzle
REPO_NAME: LittleTown
PR_NUMBER: ${{ github.event.pull_request.number }}
run: |
curl -X POST \
-H "Authorization: token ${GITEA_TOKEN}" \
-H "Content-Type: application/json" \
-d '{"body": "Merci pour votre contribution !"}' \
${GITEA_URL}/api/v1/repos/${REPO_OWNER}/${REPO_NAME}/issues/${PR_NUMBER}/comments
- name: Upload Test Result Files
uses: actions/upload-artifact@v3
with: