├── .github └── workflows │ ├── compute_impacted_tests.yaml │ ├── pr.yaml │ └── update-main-version.yaml ├── .gitignore ├── .trunk ├── .gitignore ├── configs │ └── .markdownlint.yaml └── trunk.yaml ├── LICENSE.txt ├── README.md ├── action.yaml ├── jest.config.js ├── package.json ├── pnpm-lock.yaml ├── src └── scripts │ ├── BUILD │ ├── compute_impacted_targets.sh │ ├── prerequisites.sh │ └── upload_impacted_targets.sh ├── tests ├── simple_bazel_workspace │ ├── WORKSPACE │ └── lib │ │ ├── BUILD │ │ └── foo.txt └── upload.test.ts └── tsconfig.json /.github/workflows/compute_impacted_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/.github/workflows/compute_impacted_tests.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.github/workflows/update-main-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/.github/workflows/update-main-version.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | *_tmp 3 | -------------------------------------------------------------------------------- /.trunk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/.trunk/.gitignore -------------------------------------------------------------------------------- /.trunk/configs/.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/.trunk/configs/.markdownlint.yaml -------------------------------------------------------------------------------- /.trunk/trunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/.trunk/trunk.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/action.yaml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/scripts/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/src/scripts/BUILD -------------------------------------------------------------------------------- /src/scripts/compute_impacted_targets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/src/scripts/compute_impacted_targets.sh -------------------------------------------------------------------------------- /src/scripts/prerequisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/src/scripts/prerequisites.sh -------------------------------------------------------------------------------- /src/scripts/upload_impacted_targets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/src/scripts/upload_impacted_targets.sh -------------------------------------------------------------------------------- /tests/simple_bazel_workspace/WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/simple_bazel_workspace/lib/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/tests/simple_bazel_workspace/lib/BUILD -------------------------------------------------------------------------------- /tests/simple_bazel_workspace/lib/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/upload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/tests/upload.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trunk-io/merge-action/HEAD/tsconfig.json --------------------------------------------------------------------------------