Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pagvac patch 1 #1

Merged
merged 4 commits into from
Aug 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .github/workflows/dnsmap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@ name: dnsmap

on:
push:
branches: [ "main" ]
branches: [ "main", "pagvac-patch-1" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '45 17 * * 3'
workflow_dispatch:
inputs:
domain:
description: 'your domain name'
default: 'github.com'
type: string
required: false


jobs:
dnsmap-command:
Expand All @@ -17,5 +24,9 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run dnsmap
- name: Run dnsmap against github.com
if: "${{ github.event.inputs.domain == '' }}"
run: python dnsmap.py github.com
- name: Run dnsmap against user-supplied domain name
if: "${{ github.event.inputs.domain }}"
run: python dnsmap.py ${{ github.event.inputs.domain }}