Skip to content

Update Phishing Detection Datasets #2

Update Phishing Detection Datasets

Update Phishing Detection Datasets #2

name: Update Phishing Detection Datasets
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Execute Update Script
run: |
bash ./scripts/update-phishing-detection-data.sh
- name: Commit Change
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Update phishing data"
- name: Create Pull Request
uses: actions/create-pull-request@v2
with:
title: Update phishing data
body: Automated pull request created by GitHub action
branch: phishing-data-update
base: main