Skip to content

Add check for GITHUB_TOKEN #3

Add check for GITHUB_TOKEN

Add check for GITHUB_TOKEN #3

name: Update Phishing Detection Datasets
on:
push:
jobs:
check_secrets:
runs-on: ubuntu-latest
steps:
- name: Check if secrets.GITHUB_TOKEN exists
run: |
if [ -z "${{ secrets.GITHUB_TOKEN }}" ]; then
echo "secrets.GITHUB_TOKEN does not exist"
exit 1
fi
update_data:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
repository: duckduckgo/macos-browser
path: macos/
token: ${{ secrets.GITHUB_TOKEN }}
- name: Execute Update Script
run: |
REVISION="$(bash ./scripts/update_phishing_detection_data.sh | grep -oP 'Updated revision from \K\d+')"
create_pr:
runs-on: ubuntu-latest
outputs:
pull-request-url: ${{ steps.create-pr.outputs.pull-request-url }}
steps:
- name: Create macOS PR Body
run: |
TEMPLATE="$(bash ./scripts/update_phishing_detection_data.sh pr-body)"
PR_BODY_MACOS="${TEMPLATE//\{\{revision\}\}/$REVISION}"
# --- Effect ---
- name: Create PR for macOS
uses: peter-evans/create-pull-request@88bf0de51c7487d91e1abbb4899332e602c58bbf
id: create-pr
with:
path: macos/
add-paths: |
./DuckDuckGo/PhishingDetection/
commit-message: Update phishing detection data to revision $REVISION
branch: update-phishing-protection-$REVISION
title: Update phishing protection datasets to $REVISION
body: "${{ env.PR_BODY_MACOS }}"
token: ${{ secrets.GITHUB_TOKEN }}