We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c78c690 commit b6905d4Copy full SHA for b6905d4
.github/workflows/sequencer_cdk8s-test.yml
@@ -16,8 +16,22 @@ on:
16
- "deployments/sequencer/**"
17
18
jobs:
19
+ # https://graphite.com/docs/stacking-and-ci
20
+ optimize_ci:
21
+ runs-on: namespace-profile-small-ubuntu-24-04-amd64
22
+ outputs:
23
+ skip: ${{ steps.check_skip.outputs.skip }}
24
+ steps:
25
+ - name: Optimize CI
26
+ id: check_skip
27
+ uses: withgraphite/graphite-ci-action@main
28
+ with:
29
+ graphite_token: ${{ secrets.GRAPHITE_CI_OPTIMIZER_TOKEN }}
30
+
31
prepare:
32
runs-on: ubuntu-24.04
33
+ needs: optimize_ci
34
+ if: needs.optimize_ci.outputs.skip == 'false'
35
env:
36
cluster: test
37
namespace: test
0 commit comments