mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 08:57:17 +00:00
Some checks are pending
Integration tests / changes (push) Waiting to run
Integration tests / Ensure Go modules synchronicity (push) Blocked by required conditions
Integration tests / Build & cache Go code (push) Blocked by required conditions
Integration tests / Lint Go code (push) Blocked by required conditions
Integration tests / Run unit tests for Go packages (push) Blocked by required conditions
Integration tests / Run unit tests with -race for Go packages (push) Blocked by required conditions
Integration tests / Check changes to generated code (push) Blocked by required conditions
Integration tests / Build, test & lint UI code (push) Blocked by required conditions
Integration tests / shellcheck (push) Waiting to run
Integration tests / Process & analyze test artifacts (push) Blocked by required conditions
Integration tests / Run end-to-end tests (push) Blocked by required conditions
Integration tests / E2E Tests - Composite result (push) Blocked by required conditions
Code scanning - action / CodeQL-Build (push) Waiting to run
Image / set-vars (push) Waiting to run
Image / build-only (push) Blocked by required conditions
Image / build-and-publish (push) Blocked by required conditions
Image / build-and-publish-provenance (push) Blocked by required conditions
Image / Deploy (push) Blocked by required conditions
Scorecards supply-chain security / Scorecards analysis (push) Waiting to run
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
46 lines
1.5 KiB
YAML
46 lines
1.5 KiB
YAML
name: "Label stale issues and PRs"
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *" #Runs midnight 12AM UTC
|
|
|
|
#Added Recommended permissions
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
env:
|
|
# a workaround to disable harden runner
|
|
STEP_SECURITY_HARDEN_RUNNER: ${{ vars.disable_harden_runner }}
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Harden the runner (Block unknown outbound calls)
|
|
if: ${{ vars.disable_harden_runner != 'true' }}
|
|
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
|
|
with:
|
|
egress-policy: block
|
|
disable-sudo-and-containers: "true"
|
|
allowed-endpoints: >
|
|
api.github.com:443
|
|
|
|
- uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
stale-issue-message: >
|
|
This issue has been marked as stale because it has had no activity for 90 days. Please comment if this is still relevant.
|
|
|
|
stale-pr-message: >
|
|
This pull request has been marked as stale because it has had no activity for 90 days. Please comment if this is still relevant.
|
|
|
|
days-before-stale: 90
|
|
days-before-close: -1 # Auto-close diabled
|
|
|
|
exempt-issue-labels: >
|
|
bug, security, breaking/high, breaking/medium, breaking/low
|
|
|
|
# General configuration
|
|
operations-per-run: 200
|
|
remove-stale-when-updated: true #Remove stale label when issue/pr is updated
|