Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- stackstate-7.78.2
- STAC-25490-otel-spike
schedule:
- cron: "17 20 * * 1-5"
workflow_dispatch:
Expand Down
14 changes: 10 additions & 4 deletions .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- stackstate-7.78.2
- STAC-25490-otel-spike
schedule:
- cron: "17 20 * * 1-5"
workflow_dispatch:
Expand Down Expand Up @@ -427,7 +428,12 @@ jobs:

merge-agent-manifest:
name: Publish and sign multi-architecture agent image
if: github.event_name == 'push'
if: >-
!cancelled() && github.event_name == 'push'
&& needs.publish-agent-image.result == 'success'
&& (needs.sign-and-publish-deb.result == 'success'
|| (github.ref == 'refs/heads/STAC-25490-otel-spike'
&& needs.sign-and-publish-deb.result == 'skipped'))
needs:
- publish-agent-image
- sign-and-publish-deb
Expand Down Expand Up @@ -461,7 +467,7 @@ jobs:
- await-verification
- build-deb
- test-deb-renaming
if: github.event_name == 'push'
if: github.event_name == 'push' && github.ref == 'refs/heads/stackstate-7.78.2'
runs-on: ubuntu-24.04
environment: agent-pre-release
timeout-minutes: 30
Expand Down Expand Up @@ -518,7 +524,7 @@ jobs:
generate-install-script:
name: Generate the pre-release agent install script
needs: godeps-cache-amd64
if: github.event_name == 'push'
if: github.event_name == 'push' && github.ref == 'refs/heads/stackstate-7.78.2'
runs-on: xlarge-public
timeout-minutes: 30
permissions:
Expand Down Expand Up @@ -564,7 +570,7 @@ jobs:
needs:
- generate-install-script
- sign-and-publish-deb
if: github.event_name == 'push'
if: github.event_name == 'push' && github.ref == 'refs/heads/stackstate-7.78.2'
runs-on: ubuntu-24.04
environment: agent-pre-release
timeout-minutes: 15
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint-and-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- stackstate-7.78.2
- STAC-25490-otel-spike
workflow_dispatch:

permissions:
Expand Down
Loading