mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
21 lines
642 B
YAML
21 lines
642 B
YAML
---
|
|
name: Generate Updates for Core and Buildessential Packages.
|
|
on:
|
|
schedule:
|
|
- cron: '0 8 * * *' # Daily
|
|
workflow_dispatch:
|
|
env:
|
|
GH_TOKEN: ${{ secrets.CREW_PR_TOKEN }} # setting GH_TOKEN for the entire workflow
|
|
permissions: # Global permissions configuration starts here
|
|
actions: write
|
|
contents: write
|
|
packages: write
|
|
pull-requests: write # 'write' access to pull requests
|
|
jobs:
|
|
update-check:
|
|
if: ${{ github.repository_owner == 'chromebrew' }}
|
|
uses: ./.github/workflows/Package-Dependencies-Updater.yml
|
|
secrets: inherit
|
|
with:
|
|
version_cmd_input: "core buildessential*"
|