Skip to content

Commit

Permalink
Yaml fixes + clarifications. (#4594)
Browse files Browse the repository at this point in the history
* Yaml fixes + clarifications.

* Update .github/workflows/stale.yml

Co-authored-by: Ruth Comer <[email protected]>

Co-authored-by: Bill Little <[email protected]>
Co-authored-by: Ruth Comer <[email protected]>
  • Loading branch information
3 people authored Feb 16, 2022
1 parent 2c29705 commit 36935a4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/refresh-lockfiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ on:
default: "no"
schedule:
# Run once a week on a Saturday night
- cron: 1 0 * * 6
# N.B. "should" be quoted, according to
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onschedule
- cron: "1 0 * * 6"


jobs:
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# See https://github.com/actions/stale

name: Stale issues and pull-requests

on:
schedule:
- cron: 0 0 * * *
# Run once a day
# N.B. "should" be quoted, according to
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onschedule
- cron: "0 0 * * *"

jobs:
stale:
Expand Down Expand Up @@ -59,11 +63,11 @@ jobs:
stale-pr-label: Stale

# Labels on issues exempted from stale.
exempt-issue-labels: |
exempt-issue-labels:
"Status: Blocked,Status: Decision Required,Peloton 🚴‍♂️,Good First Issue"

# Labels on prs exempted from stale.
exempt-pr-labels: |
exempt-pr-labels:
"Status: Blocked,Status: Decision Required,Peloton 🚴‍♂️,Good First Issue"

# Max number of operations per run.
Expand Down

0 comments on commit 36935a4

Please sign in to comment.