chore: add tests, update docs and actions (#299)

* docs: update documentation

* feat: validate-inputs has it's own pyproject

* security: mask DOCKERHUB_PASSWORD

* chore: add tokens, checkout, recrete docs, integration tests

* fix: add `statuses: write` permission to pr-lint
This commit is contained in:
2025-10-18 13:09:19 +03:00
committed by GitHub
parent d3c2de1bd1
commit 7061aafd35
148 changed files with 5119 additions and 1897 deletions

View File

@@ -8,11 +8,11 @@ A GitHub Action to close stale issues and pull requests.
### Inputs
| name | description | required | default |
|---------------------|------------------------------------------------------------------------|----------|-----------------------|
| `token` | <p>GitHub token for authentication</p> | `false` | `${{ github.token }}` |
| `days-before-stale` | <p>Number of days of inactivity before an issue is marked as stale</p> | `false` | `30` |
| `days-before-close` | <p>Number of days of inactivity before a stale issue is closed</p> | `false` | `7` |
| name | description | required | default |
|---------------------|------------------------------------------------------------------------|----------|---------|
| `token` | <p>GitHub token for authentication</p> | `false` | `""` |
| `days-before-stale` | <p>Number of days of inactivity before an issue is marked as stale</p> | `false` | `30` |
| `days-before-close` | <p>Number of days of inactivity before a stale issue is closed</p> | `false` | `7` |
### Outputs
@@ -34,7 +34,7 @@ This action is a `composite` action.
# GitHub token for authentication
#
# Required: false
# Default: ${{ github.token }}
# Default: ""
days-before-stale:
# Number of days of inactivity before an issue is marked as stale

View File

@@ -15,7 +15,7 @@ inputs:
token:
description: 'GitHub token for authentication'
required: false
default: ${{ github.token }}
default: ''
days-before-stale:
description: 'Number of days of inactivity before an issue is marked as stale'
required: false
@@ -36,12 +36,17 @@ outputs:
runs:
using: composite
steps:
- name: Checkout Repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
token: ${{ inputs.token || github.token }}
- name: Validate Inputs
id: validate
uses: ./validate-inputs
with:
action: 'stale'
token: ${{ inputs.token }}
token: ${{ inputs.token || github.token }}
days-before-stale: ${{ inputs.days-before-stale }}
days-before-close: ${{ inputs.days-before-close }}
@@ -49,7 +54,7 @@ runs:
id: stale
uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
with:
repo-token: ${{ inputs.token }}
repo-token: ${{ inputs.token || github.token }}
days-before-stale: ${{ inputs.days-before-stale }}
days-before-close: ${{ inputs.days-before-close }}
remove-stale-when-updated: true