This repository contains a GitHub Actions workflow that updates a list of bot user agents once a week. The list is fetched from a public repository and saved to a file in this repository. The workflow runs every Sunday at midnight Taiwan time.
The GitHub Actions workflow is defined in .github/workflows/update-bot-list.yml
. It performs the following steps:
- Checks out the repository.
- Sets up Python.
- Installs the required dependencies.
- Runs a Python script to fetch and update the bot list.
- Commits and pushes the changes to the repository.
The workflow is scheduled to run:
- Every Sunday at midnight Taiwan time (which is 4 PM UTC on Saturday).
The workflow can also be triggered manually from the GitHub Actions tab.
your-repository/ ├── .github/ │ └── workflows/ │ └── update-bot-list.yml ├── update_bot_list.py