schedule #327
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: schedule | |
on: | |
# pull_request: | |
# branches: [main] | |
# push: | |
# branches: [fix-*] | |
schedule: | |
# Every 12 hours | |
# - cron: "20 */12 * * *" | |
# Every day at 6am | |
- cron: "0 6 * * *" | |
# allow run manually | |
workflow_dispatch: | |
permissions: write-all | |
jobs: | |
bump-casks-formulae: | |
name: Bump casks & formulae | |
if: github.repository == 'brewforge/homebrew-chinese' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Homebrew env | |
uses: ./.github/actions/homebrew-env | |
- name: Brew Tap | |
uses: ./.github/actions/brew-tap | |
- name: Git Cred | |
uses: ./.github/actions/git-cred | |
with: | |
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }} | |
- name: Bump | |
env: | |
HOMEBREW_DEVELOPER: "1" | |
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }} | |
shell: bash -ieo pipefail {0} | |
run: | | |
rsync -lrv --exclude=.git "$(pwd)" "$(brew --repository brewforge/chinese)" | |
cd "$(brew --repository brewforge/chinese)" | |
./.github/actions/bump-pr/script.sh | |
# formulas-linuxbrew: | |
# name: Bump Formulae in parallel (Linuxbrew) | |
# if: github.repository == 'brewforge/homebrew-chinese' | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# matrix: | |
# os: [ubuntu-latest] | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Linuxbrew env | |
# uses: ./.github/actions/linuxbrew-env | |
# - name: Brew Tap | |
# uses: ./.github/actions/brew-tap | |
# with: | |
# HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }} | |
# - name: Bump formulae | |
# uses: ./.github/actions/bump-formulas | |
# with: | |
# HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }} |