Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Cleanup workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Apr 22, 2023
1 parent c07c06a commit 4a6d5c4
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 11 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Build artifact'
name: 'Build'

on:
push:
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
with:
name: updater
path: |
dist/${{ env.DEFAULT_TARGET }}-*
dist/${{ env.DEFAULT_TARGET }}-*/${{ env.DEFAULT_TARGET }}-update-*/
# - name: 'Find Previous Comment'
# if: ${{ github.event.pull_request }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hotfix.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Hotfix integration"
name: "Hotfix"

on:
pull_request_review:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Lint formatting'
name: 'Lint'

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Release integration"
name: 'Release'

on:
pull_request_review:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'SonarCloud analysis'
name: 'SonarCloud'

on:
workflow_dispatch:
Expand All @@ -10,7 +10,7 @@ env:
DEFAULT_TARGET: f7

jobs:
analyze:
sonarcloud:
runs-on: ubuntu-latest
env:
SONAR_SCANNER_VERSION: 4.7.0.2747
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Check submodules'
name: 'Submodules'

on:
push:
Expand All @@ -10,7 +10,7 @@ on:
pull_request:

jobs:
check_protobuf:
submodules:
runs-on: ubuntu-latest
steps:

Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/discord.yml → .github/workflows/webhook.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Discord webhook
name: 'Webhook'

on:
push:
Expand All @@ -11,6 +11,14 @@ on:
types:
- "published"
workflow_run:
workflows:
- "Build"
- "Hotfix"
- "Lint"
- "Release"
- "SonarCloud"
- "Submodules"
- "Webhook"
types:
- "completed"
issues:
Expand All @@ -33,4 +41,4 @@ jobs:
- name: Send webhook
env:
DEV_WEBHOOK: "https://discord.com/api/webhooks/${{ secrets.DEV_WEBHOOK_ID }}/${{ secrets.DEV_WEBHOOK_TOKEN }}"
run: python .github/workflow_data/discord.py
run: python .github/workflow_data/webhook.py

0 comments on commit 4a6d5c4

Please sign in to comment.