Skip to content
Merged
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
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,21 @@ defaults:
shell: bash

jobs:
optimize-ci:
runs-on: ubuntu-latest # or whichever runner you use for your CI
outputs:
skip: ${{ steps.check_skip.outputs.skip }}
steps:
- name: Optimize CI
id: check_skip
uses: withgraphite/graphite-ci-action@ee395f3a78254c006d11339669c6cabddf196f72
with:
graphite_token: ${{ secrets.GRAPHITE_CI_OPTIMIZER_TOKEN }}
Comment thread
Brooooooklyn marked this conversation as resolved.

detect-changes:
runs-on: ubuntu-latest
needs: optimize-ci
if: needs.optimize-ci.outputs.skip == 'false'
Comment thread
Brooooooklyn marked this conversation as resolved.
permissions:
contents: read
pull-requests: read
Expand Down
Loading