这是indexloc提供的服务,不要输入任何密码
Skip to content
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 30 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
8 replies
@bobaaaaa
Comment options

@alexbchr
Comment options

@jplwood
Comment options

@bobaaaaa
Comment options

@jplwood
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
9 replies
@douglasg14b
Comment options

@0xMurage
Comment options

@alexbchr
Comment options

@0xMurage
Comment options

@alexbchr
Comment options

Comment options

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

@jplwood
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet