Scheduled regeneration #34127
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: Scheduled regeneration | |
on: | |
push: | |
paths: | |
- .github/workflows/scheduled.yml | |
schedule: | |
# Once every hour | |
- cron: "30 * * * *" | |
concurrency: | |
group: scheduled | |
cancel-in-progress: true | |
permissions: | |
contents: write | |
jobs: | |
generate: | |
if: startsWith( github.repository, 'Homebrew/' ) | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Set up Homebrew | |
id: set-up-homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@cacc9f1c0b3f4eb8a16a6bb0ed10897b43b9de49 # v1.176.0 | |
with: | |
ruby-version: "3.1" | |
bundler-cache: true | |
- name: Configure Git user | |
uses: Homebrew/actions/git-user-config@master | |
with: | |
username: BrewTestBot | |
- name: Generate site | |
run: | | |
ln -s $(brew --repo) brew | |
bundle exec rake yard build | |
- name: Commit changes | |
run: | | |
git reset origin/master | |
git add docs | |
if ! git diff --no-patch --exit-code HEAD -- docs; then | |
git commit -m "docs: updates from Homebrew/brew" docs | |
fi | |
- name: Push commits | |
uses: Homebrew/actions/git-try-push@master |