summaryrefslogtreecommitdiffstats
path: root/.github/workflows/monitor-releases.yml
blob: 7962c9861052b3b6e63633861cb1b912c7ffa889 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
name: Monitor-releases

on:
  release:
    types: [released, deleted]
  workflow_dispatch:
    inputs:
      channel:
        description: 'Specify the release channel'
        required: true
        default: 'stable'


concurrency: # This keeps multiple instances of the job from running concurrently for the same ref and event type.
  group: monitor-{{ github.event.inputs.channel }}-releases-${{ github.ref }}-${{ github.event_name }}
  cancel-in-progress: true

jobs:
  update-stable-agents-metadata:
    name: update-stable-agents-metadata
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        id: checkout
        uses: actions/checkout@v4
        with:
          token: ${{ secrets.NETDATABOT_GITHUB_TOKEN }}
      - name: Init python environment
        uses: actions/setup-python@v5
        id: init-python
        with:
          python-version: "3.12"
      - name: Setup python environment
        id: setup-python
        run: |
          pip install -r .github/scripts/modules/requirements.txt
      - name: Check for newer versions
        id: check-newer-releases
        run: |
          python .github/scripts/check_latest_versions_per_channel.py "${{ github.event.inputs.channel }}"
      - name: SSH setup
        id: ssh-setup
        if: github.event_name == 'workflow_dispatch' && github.repository == 'netdata/netdata' && steps.check-newer-releases.outputs.versions_needs_update == 'true'
        uses: shimataro/ssh-key-action@v2
        with:
          key: ${{ secrets.NETDATABOT_PACKAGES_SSH_KEY }}
          name: id_ecdsa
          known_hosts: ${{ secrets.PACKAGES_KNOWN_HOSTS }}
      - name: Sync newer releases
        id: sync-releases
        if: github.event_name == 'workflow_dispatch' && github.repository == 'netdata/netdata' && steps.check-newer-releases.outputs.versions_needs_update == 'true'
        run: |
          .github/scripts/upload-new-version-tags.sh
      - name: Failure Notification
        uses: rtCamp/action-slack-notify@v2
        env:
          SLACK_COLOR: 'danger'
          SLACK_FOOTER: ''
          SLACK_ICON_EMOJI: ':github-actions:'
          SLACK_TITLE: 'Failed to prepare changelog:'
          SLACK_USERNAME: 'GitHub Actions'
          SLACK_MESSAGE: |-
              ${{ github.repository }}: Failed to update stable Agent's metadata.
              Checkout: ${{ steps.checkout.outcome }}
              Init python: ${{ steps.init-python.outcome }}
              Setup python: ${{ steps.setup-python.outcome }}
              Check for newer stable releaes: ${{ steps.check-newer-releases.outcome }}
              Setup ssh: ${{ steps.ssh-setup.outcome }}
              Syncing newer release to packages.netdata.cloud : ${{ steps.sync-releases.outcome }}
          SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
        if: failure()