-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-- [#633] Fixed mishandling of network sets when assigned to a profil…
…e connection and processing with ConvertTo-OVPowerShellScript. -- [#634] Fixed missing -IloHostname parameter in ConvertTo-OVPowerShellScript when processing either a server profile template or server profile object. -- [#637] Fixed generating user role output in ConvertTo-OVPowerShellScript. -- [#638] Fixed Set-OVNetworkSet inadvertantly trying to change the network set type to REGULAR. -- Added workaround to supporting Gen10 Plus V2 platforms and supporting firmware management. -- Added Update-OVRemoteSupportEntitlement Cmdlet to refresh remote support entitlement data with the backend.
- Loading branch information
1 parent
b052f4f
commit 8e274a7
Showing
8 changed files
with
169 additions
and
121 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: "Stale issue handler" | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
cron: "0 */12 * * *" # Run the job every 12 hours | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v3.0.14 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: 'This issue is stale because it has been open 60 or more days with no activity. Remove stale label or comment or this will be closed in 7 days.' | ||
close-issue-message: 'This stale issue is being closed, because it has been open for 60 or more days with no further activity. If you feel this is in error, please add a comment or re-open the issue.' | ||
days-before-stale: 60 | ||
days-before-close: 7 | ||
close-issue-label: Stale-Closed | ||
operations-per-run: 250 |
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
Oops, something went wrong.