Skip to content

CI: how to check which apps have changed #800

Closed Answered by bobaaaaa
bobaaaaa asked this question in Help
Discussion options

You must be logged in to vote

Here is an example how we do this on github actions:

name: Pipeline

# ... more global settings (not relevant here)

jobs:
  checks:
    name: Build
    # ... more job settings (not relevent here)
    env:
      TURBO_RUN_FILTER: ${{ github.event_name == 'pull_request' && '...[origin/main]' || '...[HEAD^]' }}
    outputs:
      # Defining a job output for used by the next jobs:
      # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idoutputs
      changed-app: ${{ steps.changed-app.outputs.result }}
      changed-docs: ${{ steps.changed-docs.outputs.result }}

    steps:
    # ... all basic steps you need (checkout etc.)

      - name: Changeset

Replies: 10 comments 20 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@weyert
Comment options

@bobaaaaa
Comment options

Comment options

You must be logged in to vote
2 replies
@furkimon
Comment options

@bobaaaaa
Comment options

Comment options

You must be logged in to vote
7 replies
@jaredpalmer
Comment options

@mrmckeb
Comment options

@jarrodjperez
Comment options

@mrmckeb
Comment options

@jarrodjperez
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
7 replies
@jplwood
Comment options

@bobaaaaa
Comment options

@alexbchr
Comment options

@jplwood
Comment options

@bobaaaaa
Comment options

Answer selected by bobaaaaa
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@bobaaaaa
Comment options

@weyert
Comment options

Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet