Change trigger #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Phishing Detection Datasets | |
on: push | |
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 |