mirror of
https://github.com/C24Be/AS_Network_List.git
synced 2026-01-25 07:26:59 +03:00
whois
This commit is contained in:
84
.github/workflows/resolve_networks.yml
vendored
Normal file
84
.github/workflows/resolve_networks.yml
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
name: Resolve names of RU Networks and ASNs
|
||||
|
||||
env:
|
||||
GH_PAT: ${{ secrets.GH_PAT }}
|
||||
REPO_NAME: AS_Network_List
|
||||
REPO_OWNER: C24Be
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0,30 1-4 1 * *'
|
||||
|
||||
jobs:
|
||||
resolve_asn:
|
||||
name: 'Resolve/ASN'
|
||||
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
needs: get_lists
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0 # this is required to fetch all history for all branches and tags
|
||||
token: ${{ env.GH_PAT }}
|
||||
ref: ${{ github.branch }}
|
||||
- uses: ./.github/actions/gitReset
|
||||
- uses: ./.github/actions/pyInstall
|
||||
- run: ./get_description.py auto/all-ru-asn.txt --limit 4000
|
||||
- uses: ./.github/actions/gitPush
|
||||
env:
|
||||
PUSH_FILES: auto/*txt
|
||||
|
||||
resolve_ipv4:
|
||||
name: 'Resolve/IPv4'
|
||||
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
needs: get_lists
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0 # this is required to fetch all history for all branches and tags
|
||||
token: ${{ env.GH_PAT }}
|
||||
ref: ${{ github.branch }}
|
||||
- uses: ./.github/actions/gitReset
|
||||
- uses: ./.github/actions/pyInstall
|
||||
- run: ./get_description.py auto/all-ru-ipv4.txt --limit 4000
|
||||
- uses: ./.github/actions/gitPush
|
||||
env:
|
||||
PUSH_FILES: auto/*txt
|
||||
|
||||
resolve_ipv6:
|
||||
name: 'Resolve/IPv6'
|
||||
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
needs: get_lists
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0 # this is required to fetch all history for all branches and tags
|
||||
token: ${{ env.GH_PAT }}
|
||||
ref: ${{ github.branch }}
|
||||
- uses: ./.github/actions/gitReset
|
||||
- uses: ./.github/actions/pyInstall
|
||||
- run: ./get_description.py auto/all-ru-ipv6.txt --limit 4000
|
||||
- uses: ./.github/actions/gitPush
|
||||
env:
|
||||
PUSH_FILES: auto/*txt
|
||||
70
.github/workflows/update_ru_all_lists.yml
vendored
70
.github/workflows/update_ru_all_lists.yml
vendored
@@ -30,73 +30,3 @@ jobs:
|
||||
- uses: ./.github/actions/gitPush
|
||||
env:
|
||||
PUSH_FILES: auto/*txt
|
||||
|
||||
# get_asn:
|
||||
# name: 'Get/ASN'
|
||||
#
|
||||
# runs-on: ubuntu-22.04
|
||||
#
|
||||
# defaults:
|
||||
# run:
|
||||
# shell: bash
|
||||
#
|
||||
# steps:
|
||||
# - uses: actions/checkout@v4
|
||||
# with:
|
||||
# fetch-depth: 0 # this is required to fetch all history for all branches and tags
|
||||
# token: ${{ env.GH_PAT }}
|
||||
# ref: ${{ github.branch }}
|
||||
# - uses: ./.github/actions/gitReset
|
||||
# - uses: ./.github/actions/pyInstall
|
||||
# - run: ./get_info_from_ripe.py --asn --limit 4000
|
||||
# - uses: ./.github/actions/gitPush
|
||||
# env:
|
||||
# PUSH_FILES: auto/*txt
|
||||
#
|
||||
# get_ipv4:
|
||||
# name: 'Get/IPv4'
|
||||
#
|
||||
# runs-on: ubuntu-22.04
|
||||
#
|
||||
# defaults:
|
||||
# run:
|
||||
# shell: bash
|
||||
#
|
||||
# needs: get_asn
|
||||
#
|
||||
# steps:
|
||||
# - uses: actions/checkout@v4
|
||||
# with:
|
||||
# fetch-depth: 0 # this is required to fetch all history for all branches and tags
|
||||
# token: ${{ env.GH_PAT }}
|
||||
# ref: ${{ github.branch }}
|
||||
# - uses: ./.github/actions/gitReset
|
||||
# - uses: ./.github/actions/pyInstall
|
||||
# - run: ./get_info_from_ripe.py --ipv4 --limit 4000
|
||||
# - uses: ./.github/actions/gitPush
|
||||
# env:
|
||||
# PUSH_FILES: auto/*txt
|
||||
#
|
||||
# get_ipv6:
|
||||
# name: 'Get/IPv6'
|
||||
#
|
||||
# runs-on: ubuntu-22.04
|
||||
#
|
||||
# defaults:
|
||||
# run:
|
||||
# shell: bash
|
||||
#
|
||||
# needs: get_ipv4
|
||||
#
|
||||
# steps:
|
||||
# - uses: actions/checkout@v4
|
||||
# with:
|
||||
# fetch-depth: 0 # this is required to fetch all history for all branches and tags
|
||||
# token: ${{ env.GH_PAT }}
|
||||
# ref: ${{ github.branch }}
|
||||
# - uses: ./.github/actions/gitReset
|
||||
# - uses: ./.github/actions/pyInstall
|
||||
# - run: ./get_info_from_ripe.py --ipv6 --limit 4000
|
||||
# - uses: ./.github/actions/gitPush
|
||||
# env:
|
||||
# PUSH_FILES: auto/*txt
|
||||
|
||||
Reference in New Issue
Block a user