macro_paste 1.1.5

Macros for all your token pasting needs. Maintained, drop-in replacement for paste.
Documentation
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Mark stale issues and pull requests
permissions:
  contents: read
on:
  schedule:
    - cron: "37 6 * * *"

jobs:
  stale:

    runs-on: ubuntu-latest
    permissions:
      issues: write
      pull-requests: write

    steps:
      - name: Harden the runner (Audit all outbound calls)
        uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
        with:
          egress-policy: audit

      - uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0
        with:
          repo-token: ${{ secrets.GITHUB_TOKEN }}
          stale-issue-message: "This issue has had no activity for 60 days. Labeling as stale."
          stale-issue-label: "no-issue-activity"
          close-issue-message: "This issue has had no activity for 67 days. Closing."

          stale-pr-message: "This pull request has had no activity for 60 days. Labeling
            as stale."
          stale-pr-label: "no-pr-activity"
          close-pr-message: "This pull request has had no activity for 67 days. Closing."