-
Notifications
You must be signed in to change notification settings - Fork 22
44 lines (34 loc) · 989 Bytes
/
cron-powershell-daily.yml
File metadata and controls
44 lines (34 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
name: PowerShell daily scheduled update
permissions: read-all
on:
workflow_dispatch:
schedule:
# On the 15th of the month
- cron: '0 0 15 * *'
defaults:
run:
shell: pwsh -l -command ". '{0}'"
env:
FORMULA_PATH: ./Formula/powershell-daily.rb
UPDATE_SCRIPT_PATH: ./scripts/Upgrade-Formula.ps1
FORMULA_NAME: powershell-daily
CHANNEL_NAME: daily
HOMEBREW_NO_ENV_HINTS: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
jobs:
homebrew-formula-daily:
timeout-minutes: 15
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: Prepare Agent
uses: ./.github/workflows/composite/prep
- name: Install and Test Formula
uses: ./.github/workflows/composite/installAndTest
- name: Create PR if needed
uses: ./.github/workflows/composite/createPR
with:
token: ${{ secrets.PR_PAT }}