mirror of
https://github.com/actions/checkout.git
synced 2025-06-03 14:02:37 +08:00
Compare commits
5 Commits
7aa9d7a3ce
...
dd168fff36
Author | SHA1 | Date | |
---|---|---|---|
|
dd168fff36 | ||
|
85e6279cec | ||
|
009b9ae9e4 | ||
|
fb47a3d8df | ||
|
2136fa581b |
17
.github/workflows/stale-bot.yml
vendored
Normal file
17
.github/workflows/stale-bot.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
name: Stale Bot
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 0 * * 1' # every monday at midnight
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/stale@v8
|
||||
with:
|
||||
stale-issue-message: "This issue is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 15 days."
|
||||
close-issue-message: "This issue was closed because it has been stalled for 15 days with no activity."
|
||||
exempt-issue-labels: "keep"
|
||||
days-before-stale: 365
|
||||
days-before-close: 15
|
||||
debug-only: true
|
@ -311,8 +311,17 @@ jobs:
|
||||
git commit -m "generated"
|
||||
git push
|
||||
```
|
||||
|
||||
*NOTE:* The user email is `{user.id}+{user.login}@users.noreply.github.com`. See users API: https://api.github.com/users/github-actions%5Bbot%5D
|
||||
|
||||
# Recommended permissions
|
||||
|
||||
When using the `checkout` action in your GitHub Actions workflow, it is recommended to set the following `GITHUB_TOKEN` permissions to ensure proper functionality, unless alternative auth is provided via the `token` or `ssh-key` inputs:
|
||||
|
||||
```yaml
|
||||
permissions:
|
||||
contents: read
|
||||
```
|
||||
|
||||
# License
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user