Skip to content

Commit accf304

Browse files
Copilotbobokun
andauthored
Remove Hotio webhook step from all GitHub workflows (#1103)
Removes the `Trigger Hotio Webhook` step from all GitHub Actions workflows. The step was present in two files, calling `joelwmale/webhook-action@master` to notify hotio's build pipeline. ## Description Removed `Trigger Hotio Webhook` step from: - `.github/workflows/develop.yml` — was triggering hotio nightly build - `.github/workflows/version.yml` — was triggering hotio release build ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] This change requires a documentation update ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated the docstring for new or existing methods - [x] I have modified this PR to merge to the develop branch <!-- START COPILOT CODING AGENT TIPS --> --- 🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. [Learn more about Advanced Security.](https://gh.io/cca-advanced-security) --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bobokun <12660469+bobokun@users.noreply.github.com>
1 parent 40e7284 commit accf304

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

.github/workflows/develop.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -390,13 +390,6 @@ jobs:
390390
with:
391391
ref: develop
392392

393-
- name: Trigger Hotio Webhook
394-
uses: joelwmale/webhook-action@master
395-
with:
396-
url: ${{ secrets.HOTIO_WEBHOOK_URL }}
397-
headers: '{"Authorization": "Bearer ${{ secrets.HOTIO_WEBHOOK_SECRET }}"}'
398-
body: '{ "application": "qbitmanage", "branch": "nightly" }'
399-
400393
- name: Login to Docker Hub
401394
uses: docker/login-action@v3
402395
with:

.github/workflows/version.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -470,13 +470,6 @@ jobs:
470470
ghcr.io/${{ env.OWNER_LC }}/qbit_manage:${{ steps.get_version.outputs.VERSION }}
471471
ghcr.io/${{ env.OWNER_LC }}/qbit_manage:latest
472472
473-
- name: Trigger Hotio Webhook
474-
uses: joelwmale/webhook-action@master
475-
with:
476-
url: ${{ secrets.HOTIO_WEBHOOK_URL }}
477-
headers: '{"Authorization": "Bearer ${{ secrets.HOTIO_WEBHOOK_SECRET }}"}'
478-
body: '{ "application": "qbitmanage", "branch": "release" }'
479-
480473
create-release:
481474
runs-on: ubuntu-latest
482475
needs: [prepare-release-assets, docker-release]

0 commit comments

Comments
 (0)