From 5af012586627234103125192e4c5c8976026670a Mon Sep 17 00:00:00 2001 From: Be Date: Sun, 3 Mar 2024 12:21:54 +0100 Subject: [PATCH] actions --- .github/workflows/update_ru_all_lists.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update_ru_all_lists.yml b/.github/workflows/update_ru_all_lists.yml index 410f505..02f37e7 100644 --- a/.github/workflows/update_ru_all_lists.yml +++ b/.github/workflows/update_ru_all_lists.yml @@ -26,8 +26,12 @@ jobs: fetch-depth: 0 # this is required to fetch all history for all branches and tags token: ${{ env.GH_PAT }} ref: ${{ github.branch }} + - run: | + git reset --hard + git clean -fdx + git pull - uses: ./.github/actions/pyInstall - - run: ./get_info_from_ripe.py --asn --limit 100 + - run: ./get_info_from_ripe.py --asn --limit 10 - uses: ./.github/actions/gitPush env: PUSH_FILES: auto/*txt @@ -49,8 +53,12 @@ jobs: fetch-depth: 0 # this is required to fetch all history for all branches and tags token: ${{ env.GH_PAT }} ref: ${{ github.branch }} + - run: | + git reset --hard + git clean -fdx + git pull - uses: ./.github/actions/pyInstall - - run: ./get_info_from_ripe.py --ipv4 --limit 100 + - run: ./get_info_from_ripe.py --ipv4 --limit 10 - uses: ./.github/actions/gitPush env: PUSH_FILES: auto/*txt @@ -72,8 +80,12 @@ jobs: fetch-depth: 0 # this is required to fetch all history for all branches and tags token: ${{ env.GH_PAT }} ref: ${{ github.branch }} + - run: | + git reset --hard + git clean -fdx + git pull - uses: ./.github/actions/pyInstall - - run: ./get_info_from_ripe.py --ipv6 --limit 100 + - run: ./get_info_from_ripe.py --ipv6 --limit 10 - uses: ./.github/actions/gitPush env: PUSH_FILES: auto/*txt