40 lines
1,008 B
YAML
Executable file
40 lines
1,008 B
YAML
Executable file
---
|
|
name: Update Brew Lists
|
|
|
|
# on:
|
|
# schedule:
|
|
# - cron: '0 2 */2 * *' # Run every two days at 2 AM
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
|
|
jobs:
|
|
update-brew-lists:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Git
|
|
run: |
|
|
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
|
|
git config --global user.name "${{ github.actor }}"
|
|
|
|
- name: Update update_brew_lists
|
|
run: |
|
|
# Perform the necessary update steps
|
|
# For example, cp update_brew_lists .
|
|
git add update_brew_lists
|
|
if ! git diff-index --quiet HEAD --; then
|
|
git commit -m "Update update_brew_lists"
|
|
git push
|
|
else
|
|
echo "No changes to update_brew_lists, skipping commit and push."
|
|
|
|
- name: Update complete
|
|
if: always()
|
|
run: echo "update_brew_lists update process completed successfully."
|
|
|