fix #122 - support actions/checkout for repos other the one for this workflow (#143)

此提交包含在:
Casey Lee
2020-03-09 17:45:42 -07:00
提交者 GitHub
父節點 143676fcfb
當前提交 16520bb277
共有 4 個檔案被更改,包括 66 行新增3 行删除

19
pkg/runner/testdata/issue-122/main.yaml 已供應 一般檔案
查看文件

@@ -0,0 +1,19 @@
name: Checkout
on: push
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
path: test-subdir1
- run: grep "Checkout" test-subdir1/issue-122/main.yaml
- uses: actions/checkout@v2
with:
repository: actions/checkout
path: test-subdir2
- run: grep "Checkout" test-subdir2/action.yml