[release/v7.5] Fix template path for rebuild branch check in package.yml by daxian-dbw · Pull Request #26818 · PowerShell/PowerShell · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/linux-ci.yml
20 changes: 11 additions & 9 deletions .github/workflows/macos-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ on:
- github-mirror
paths:
- "**"
- "*"
- ".globalconfig"
- "!.github/ISSUE_TEMPLATE/**"
- "!.dependabot/config.yml"
- "!.pipelines/**"
Expand All @@ -23,12 +25,12 @@ on:
# Path filters for PRs need to go into the changes job

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: ${{ contains(github.ref, 'merge')}}

env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_NOLOGO: 1
FORCE_FEATURE: 'False'
FORCE_PACKAGE: 'False'
HOMEBREW_NO_ANALYTICS: 1
Expand All @@ -54,7 +56,7 @@ jobs:
buildModuleChanged: ${{ steps.filter.outputs.buildModuleChanged }}
steps:
- name: checkout
uses: actions/checkout@v4.1.0
uses: actions/checkout@v5

- name: Change Detection
id: filter
Expand All @@ -69,7 +71,7 @@ jobs:
if: ${{ needs.changes.outputs.source == 'true' || needs.changes.outputs.buildModuleChanged == 'true' }}
steps:
- name: checkout
uses: actions/checkout@v4.1.0
uses: actions/checkout@v5
with:
fetch-depth: 1000
- name: Build
Expand All @@ -83,7 +85,7 @@ jobs:
runs-on: macos-15-large
steps:
- name: checkout
uses: actions/checkout@v4.1.0
uses: actions/checkout@v5
with:
fetch-depth: 1000
- name: macOS Unelevated CI
Expand All @@ -100,7 +102,7 @@ jobs:
runs-on: macos-15-large
steps:
- name: checkout
uses: actions/checkout@v4.1.0
uses: actions/checkout@v5
with:
fetch-depth: 1000
- name: macOS Elevated CI
Expand All @@ -117,7 +119,7 @@ jobs:
runs-on: macos-15-large
steps:
- name: checkout
uses: actions/checkout@v4.1.0
uses: actions/checkout@v5
with:
fetch-depth: 1000
- name: macOS Unelevated Others
Expand All @@ -134,7 +136,7 @@ jobs:
runs-on: macos-15-large
steps:
- name: checkout
uses: actions/checkout@v4.1.0
uses: actions/checkout@v5
with:
fetch-depth: 1000
- name: macOS Elevated Others
Expand Down Expand Up @@ -167,7 +169,7 @@ jobs:
- uses: actions/setup-dotnet@v4
with:
global-json-file: ./global.json

- name: Bootstrap packaging
if: success()
run: |-
import-module ./build.psm1
Expand Down
2 changes: 1 addition & 1 deletion .pipelines/templates/packaging/windows/package.yml
Loading