✨ Remove Records Containing Sectigo.com #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: Remove Sectigo Blocks | |
on: | |
schedule: | |
- cron: "0 0 * * 1-5" # Runs at 00:00 from Monday to Friday | |
workflow_dispatch: # Allows manual triggering | |
pull_request: | |
jobs: | |
remove_sectigo_blocks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies | |
run: | | |
python -m pip install -r requirements.txt | |
- name: Run script to remove Sectigo blocks | |
run: python remove_sectigo_blocks.py | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: Remove YAML blocks containing sectigo domain | |
title: "Remove Sectigo blocks" | |
body: | | |
This PR removes YAML blocks containing the Sectigo domain. | |
Auto-generated by GitHub Actions. | |
branch: remove-sectigo-blocks | |
delete-branch: true | |
base: main | |