Skip to content

Commit

Permalink
Update manual.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jkerai1 committed Jul 3, 2024
1 parent 5abbce1 commit a0ae5e9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ on:
required: true
# The data type of the input
type: string

defaults:
run:
working-directory: ./

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Expand All @@ -34,11 +30,15 @@ jobs:
python-version: '3.x'
- name: Checkout
uses: actions/checkout@v2

# Arg Check
- name: ArgCheck
run: echo "Checking ${{ github.event.inputs.name }}"

# Install DNSTwist
- name: Install DNSTwist
run: pip install DNSTwist

# Run Holehe with the provided input
- name: Run Script
run: python DNSTwistArgParsed.py --domaininput "{{$name}}"
run: python DNSTwistArgParsed.py --domaininput ${{ github.event.inputs.name }}

0 comments on commit a0ae5e9

Please sign in to comment.