ci: remove update-website.yml workflow (#21191)
Ilya Mashchenko committed
Oct 23, 2025 at 11:40 UTC
3d9256860c5a6229e889062358610b94d071a127
1 file changed
-30
.github/workflows/update-website.yml
deleted
-30
@@ -1,30 +0,0 @@
1
-name: Update website
2
-on:
3
- pull_request:
4
- types: [closed]
5
-concurrency:
6
- group: website-trigger-${{ github.ref }}
7
- cancel-in-progress: true
8
-jobs:
9
- trigger:
10
- if: github.event.pull_request.merged == true &&
11
- github.event.pull_request.base.ref == 'master' &&
12
- github.repository == 'netdata/netdata'
13
- runs-on: ubuntu-latest
14
- steps:
15
- - name: Check Labels
16
- id: label-check
17
- run: |
18
- LABELS='${{ toJSON(github.event.pull_request.labels) }}'
19
- echo "Labels: $LABELS"
20
- if [[ "$LABELS" =~ "integrations-update" ]]; then
21
- echo "has_label=true" >> $GITHUB_OUTPUT
22
- fi
23
- - name: Trigger netdata/website update-integrations workflow
24
- if: steps.label-check.outputs.has_label == 'true'
25
- uses: benc-uk/workflow-dispatch@v1
26
- with:
27
- token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
28
- repo: netdata/website
29
- workflow: Update integrations
30
- ref: refs/heads/master