mirror of
https://github.com/tianocore/edk2.git
synced 2025-08-26 22:07:55 +00:00

Some checks failed
CodeQL / Analyze (IA32, CryptoPkg) (push) Has been cancelled
CodeQL / Analyze (IA32, MdeModulePkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, DynamicTablesPkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, FatPkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, FmpDevicePkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, IntelFsp2Pkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, IntelFsp2WrapperPkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, MdePkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, PcAtChipsetPkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, PrmPkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, SecurityPkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, ShellPkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, SourceLevelDebugPkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, StandaloneMmPkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, UefiCpuPkg) (push) Has been cancelled
CodeQL / Analyze (IA32,X64, UnitTestFrameworkPkg) (push) Has been cancelled
CodeQL / Analyze (X64, CryptoPkg) (push) Has been cancelled
CodeQL / Analyze (X64, MdeModulePkg) (push) Has been cancelled
Does not apply stale labels to code first issues and pull requests since those need to stay open until spec changes are published and that might be a long time. Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
# This workflow warns and then closes issues and PRs that have had no activity
|
|
# for a specified amount of time.
|
|
#
|
|
# For more information, see:
|
|
# https://github.com/actions/stale
|
|
#
|
|
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
|
|
name: Stale Check
|
|
|
|
on:
|
|
schedule:
|
|
# At 23:35 on every day-of-week from Sunday through Saturday
|
|
# https://crontab.guru/#35_23_*_*_0-6
|
|
- cron: '35 23 * * 0-6'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
stale:
|
|
name: Stale
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Check for Stale Items
|
|
uses: actions/stale@v8
|
|
with:
|
|
days-before-issue-close: -1
|
|
days-before-issue-stale: -1
|
|
days-before-pr-stale: 60
|
|
days-before-pr-close: 7
|
|
stale-pr-message: >
|
|
This PR has been automatically marked as stale because it has not had
|
|
activity in 60 days. It will be closed if no further activity occurs within
|
|
7 days. Thank you for your contributions.
|
|
close-pr-message: >
|
|
This pull request has been automatically been closed because it did not have any
|
|
activity in 60 days and no follow up within 7 days after being marked stale.
|
|
Thank you for your contributions.
|
|
stale-pr-label: stale
|
|
exempt-issue-labels: type:code-first
|
|
exempt-pr-labels: type:code-first
|
|
|