.github/workflows/issue_pr_lock.yml #854
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| # See also: | |
| # https://github.com/podman-container-tools/podman/blob/main/.github/workflows/issue_pr_lock.yml | |
| on: | |
| schedule: | |
| # Do not run at the top of the hour to avoid github action job limits that will drop jobs sometimes. | |
| # https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#schedule | |
| - cron: '22 1 * * *' | |
| # Debug: Allow triggering job manually in github-actions WebUI | |
| workflow_dispatch: {} | |
| jobs: | |
| # Ref: https://docs.github.com/en/actions/using-workflows/reusing-workflows | |
| closed_issue_discussion_lock: | |
| uses: podman-container-tools/podman/.github/workflows/issue_pr_lock.yml@main | |
| secrets: inherit | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write |