We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73b7a01 commit 3c827f1Copy full SHA for 3c827f1
1 file changed
.github/workflows/ci.yml
@@ -23,8 +23,21 @@ defaults:
23
shell: bash
24
25
jobs:
26
+ optimize-ci:
27
+ runs-on: ubuntu-latest # or whichever runner you use for your CI
28
+ outputs:
29
+ skip: ${{ steps.check_skip.outputs.skip }}
30
+ steps:
31
+ - name: Optimize CI
32
+ id: check_skip
33
+ uses: withgraphite/graphite-ci-action@ee395f3a78254c006d11339669c6cabddf196f72
34
+ with:
35
+ graphite_token: ${{ secrets.GRAPHITE_CI_OPTIMIZER_TOKEN }}
36
+
37
detect-changes:
38
runs-on: ubuntu-latest
39
+ needs: optimize-ci
40
+ if: needs.optimize-ci.outputs.skip == 'false'
41
permissions:
42
contents: read
43
pull-requests: read
0 commit comments