GitHub Actions based Affected Targets
Learn how to configure GitHub Actions workflows to run only when certain files are changed. MergeQueue can identify the affected targets for the queue.
on:
push:
paths:
- '**.js'Setup
name: aviator-affected-targets
on:
pull_request:
jobs:
aviator-affected-targets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: aviator-co/affected-targets-gha-action@v1
with:
aviator-token: ${{ secrets.AVIATOR_TOKEN }}Last updated
Was this helpful?
