Skip to content

Commit

Permalink
Merge pull request #3 from OWASP-BLT/DonnieBLT/add-workflow-dispatch
Browse files Browse the repository at this point in the history
Add workflow dispatch
  • Loading branch information
DonnieBLT authored Oct 27, 2024
2 parents c05ce47 + 86d0af4 commit 461ace3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/scrape_funding.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
workflow_dispatch:

permissions:
contents: write
Expand Down Expand Up @@ -37,4 +38,4 @@ jobs:
git config --local user.name "GitHub Action"
git add project_repos_links.json index.html
git commit -m "Update repository status" || echo "No changes to commit"
git push
git push
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# BLT-Tomato
Scripts related to projects mainly for high level OWASP project management
1) Funding https://owasp-blt.github.io/BLT-Tomato/

## Manually Triggering the Workflow

The workflow can be manually triggered using the `workflow_dispatch` event. This allows you to run the workflow on demand without waiting for a push event to the `main` branch.

To manually trigger the workflow, follow these steps:
1. Go to the "Actions" tab in your GitHub repository.
2. Select the workflow you want to run.
3. Click on the "Run workflow" button.
4. Optionally, provide any required inputs and click "Run workflow" again.

0 comments on commit 461ace3

Please sign in to comment.