env_encryption_tool 0.9.24

Rust-based .env (dotenv) file encryption & decryption tool - store & retrieve your app environment variables safely 😎 now Post-Quantum-safe!
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: "19 20 * * 0"

jobs:
  stale:

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

    steps:
      - uses: actions/stale@v10
        with:
          repo-token: ${{ secrets.GITHUB_TOKEN }}
          days-before-stale: "30"
          days-before-close: "7"
          stale-issue-message: "This issue has had no activity for 30 days. Labelling as stale."
          stale-issue-label: "no-issue-activity"
          close-issue-message: "This issue has had no activity for 37 days. Closing."

          stale-pr-message: "This pull request has had no activity for 30 days. Labelling
            as stale."
          stale-pr-label: "no-pr-activity"
          close-pr-message: "This pull request has had no activity for 37 days. Closing."