From 582778a80ef00403e369ce1dfb1bf187f8a8f10a Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Sun, 29 Mar 2020 10:18:50 -0500 Subject: [PATCH 01/10] Trigger action --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index aad2bd3..41f264d 100644 --- a/README.md +++ b/README.md @@ -167,4 +167,3 @@ kedro build-reqs This will copy the contents of `src/requirements.txt` into a new file `src/requirements.in` which will be used as the source for `pip-compile`. You can see the output of the resolution by opening `src/requirements.txt`. After this, if you'd like to update your project requirements, please update `src/requirements.in` and re-run `kedro build-reqs`. - From 89b17bc502ef3e3829046d8e25e63cb5392ac1f9 Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Sun, 29 Mar 2020 10:22:02 -0500 Subject: [PATCH 02/10] Trigger Action From b0d13da4e8af71131ba2a0c4c25cd0cecd59bd55 Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Sun, 29 Mar 2020 10:25:14 -0500 Subject: [PATCH 03/10] Update kedro-action.yml --- .github/workflows/kedro-action.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/kedro-action.yml b/.github/workflows/kedro-action.yml index 1385071..00ba4f3 100644 --- a/.github/workflows/kedro-action.yml +++ b/.github/workflows/kedro-action.yml @@ -14,9 +14,7 @@ jobs: - uses: actions/cache@v1 with: path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} - restore-keys: | - ${{ runner.os }}-pip- + key: ${{ runner.os }}-pip-${{ hashFiles('src/requirements.txt') }} - name: Kedro uses: WaylonWalker/kedro-action@develop with: From 58ccf235bd3a10790544e4db525b1751e4858e60 Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Sun, 29 Mar 2020 10:29:22 -0500 Subject: [PATCH 04/10] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 41f264d..aad2bd3 100644 --- a/README.md +++ b/README.md @@ -167,3 +167,4 @@ kedro build-reqs This will copy the contents of `src/requirements.txt` into a new file `src/requirements.in` which will be used as the source for `pip-compile`. You can see the output of the resolution by opening `src/requirements.txt`. After this, if you'd like to update your project requirements, please update `src/requirements.in` and re-run `kedro build-reqs`. + From 83e8f17390925d87ab46dff84d368a3308546e03 Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Sun, 29 Mar 2020 10:38:33 -0500 Subject: [PATCH 05/10] find where pip packages are --- .github/workflows/kedro-action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/kedro-action.yml b/.github/workflows/kedro-action.yml index 00ba4f3..6d31462 100644 --- a/.github/workflows/kedro-action.yml +++ b/.github/workflows/kedro-action.yml @@ -19,5 +19,9 @@ jobs: uses: WaylonWalker/kedro-action@develop with: GITHUB_PAT: ${{ secrets.REPO_ONLY_PAT }} + - name: ls pip + run: ls ~/.pip + - name: show kedro + run: pip show kedro # verbose: true From 0fff0986094a9f94f4f243175f100b9a3a7a4981 Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Sun, 29 Mar 2020 10:42:53 -0500 Subject: [PATCH 06/10] find pip packages --- .github/workflows/kedro-action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/kedro-action.yml b/.github/workflows/kedro-action.yml index 6d31462..e81d8ae 100644 --- a/.github/workflows/kedro-action.yml +++ b/.github/workflows/kedro-action.yml @@ -19,9 +19,9 @@ jobs: uses: WaylonWalker/kedro-action@develop with: GITHUB_PAT: ${{ secrets.REPO_ONLY_PAT }} - - name: ls pip - run: ls ~/.pip - name: show kedro run: pip show kedro + - name: show pip + run: pip list -v # verbose: true From 9a1386c14e40223789d0ce23128a0b4ef5e9dee0 Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Sun, 29 Mar 2020 10:48:15 -0500 Subject: [PATCH 07/10] Update kedro-action.yml --- .github/workflows/kedro-action.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/kedro-action.yml b/.github/workflows/kedro-action.yml index e81d8ae..250e482 100644 --- a/.github/workflows/kedro-action.yml +++ b/.github/workflows/kedro-action.yml @@ -11,17 +11,8 @@ jobs: steps: - uses: actions/checkout@master - - uses: actions/cache@v1 - with: - path: ~/.cache/pip - key: ${{ runner.os }}-pip-${{ hashFiles('src/requirements.txt') }} - name: Kedro uses: WaylonWalker/kedro-action@develop with: GITHUB_PAT: ${{ secrets.REPO_ONLY_PAT }} - - name: show kedro - run: pip show kedro - - name: show pip - run: pip list -v -# verbose: true From 4e9c3bca7e54a0099c31a4438100a4659a937b15 Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Sun, 29 Mar 2020 10:54:58 -0500 Subject: [PATCH 08/10] Update kedro-action.yml --- .github/workflows/kedro-action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/kedro-action.yml b/.github/workflows/kedro-action.yml index 250e482..3a152b5 100644 --- a/.github/workflows/kedro-action.yml +++ b/.github/workflows/kedro-action.yml @@ -1,8 +1,8 @@ name: kedro on: - push - + watch: + types: [ started ] jobs: kedro: From 39648d5285ee273d50547d39604d8bf4fbd9398c Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Sun, 29 Mar 2020 11:03:05 -0500 Subject: [PATCH 09/10] Update kedro-action.yml --- .github/workflows/kedro-action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/kedro-action.yml b/.github/workflows/kedro-action.yml index 3a152b5..8d38f92 100644 --- a/.github/workflows/kedro-action.yml +++ b/.github/workflows/kedro-action.yml @@ -14,5 +14,6 @@ jobs: - name: Kedro uses: WaylonWalker/kedro-action@develop with: + verbose: true GITHUB_PAT: ${{ secrets.REPO_ONLY_PAT }} From b416882a3ed0cf5df9a58e87eb5c053cef40e67a Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Sun, 29 Mar 2020 11:09:45 -0500 Subject: [PATCH 10/10] Update kedro-action.yml --- .github/workflows/kedro-action.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/kedro-action.yml b/.github/workflows/kedro-action.yml index 8d38f92..3a152b5 100644 --- a/.github/workflows/kedro-action.yml +++ b/.github/workflows/kedro-action.yml @@ -14,6 +14,5 @@ jobs: - name: Kedro uses: WaylonWalker/kedro-action@develop with: - verbose: true GITHUB_PAT: ${{ secrets.REPO_ONLY_PAT }}