diff --git a/.github/no-response.yml b/.github/no-response.yml deleted file mode 100644 index c60869464562..000000000000 --- a/.github/no-response.yml +++ /dev/null @@ -1,10 +0,0 @@ -# Configuration for probot-no-response - https://github.com/probot/no-response - -daysUntilClose: 14 -responseRequiredLabel: "status:awaiting response" -closeComment: > - This issue has been automatically closed because there has been no response - to our request for more information from the original author. With only the - information that is currently in the issue, we don't have enough information - to take action. Please reach out if you have or find the answers we need so - that we can investigate further. diff --git a/.github/workflows/bundler-friendly.yml b/.github/workflows/bundler-friendly.yml index 063b2cfa7973..c7d98ac40bf4 100644 --- a/.github/workflows/bundler-friendly.yml +++ b/.github/workflows/bundler-friendly.yml @@ -2,8 +2,8 @@ name: Bundler_Friendly on: schedule: - # “At 00:00 on Sunday.” https://crontab.guru/#0%C2%A00%C2%A0*%C2%A0*%C2%A00 - - cron: "0 0 * * 0" + # “At 00:00 on Sunday.” https://crontab.guru/#0_0_*_*_SUN + - cron: "0 0 * * SUN" pull_request: paths: - "scripts/tools/bundle-test/**" diff --git a/.github/workflows/dev-package-test.yml b/.github/workflows/dev-package-test.yml index 52c72dc8aab4..cf44ac4fdc39 100644 --- a/.github/workflows/dev-package-test.yml +++ b/.github/workflows/dev-package-test.yml @@ -2,8 +2,8 @@ name: Dev_Package_Test on: schedule: - # “At 00:00 on Sunday.” https://crontab.guru/#0%C2%A00%C2%A0*%C2%A0*%C2%A00 - - cron: "0 0 * * 0" + # “At 00:00 on Sunday.” https://crontab.guru/#0_0_*_*_SUN + - cron: "0 0 * * SUN" pull_request: paths: - "package.json" diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 5207ea059c61..68524e76ef1b 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -2,6 +2,7 @@ name: "Lock" on: schedule: + # “At 00:00.” https://crontab.guru/#0_0_*_*_* - cron: "0 0 * * *" jobs: diff --git a/.github/workflows/no-response.yml b/.github/workflows/no-response.yml new file mode 100644 index 000000000000..5981ff4b70ef --- /dev/null +++ b/.github/workflows/no-response.yml @@ -0,0 +1,30 @@ +name: No Response + +# Both `issue_comment` and `scheduled` event types are required for this Action +# to work properly. +on: + issue_comment: + types: + - created + schedule: + # “At minute 0.” https://crontab.guru/#0_*_*_*_* + - cron: "0 * * * *" + +permissions: + issues: write + +jobs: + no-response: + runs-on: ubuntu-latest + steps: + - uses: lee-dohm/no-response@v0.5.0 + with: + token: ${{ github.token }} + daysUntilClose: 14 + responseRequiredLabel: "status:awaiting response" + closeComment: > + This issue has been automatically closed because there has been no response + to our request for more information from the original author. With only the + information that is currently in the issue, we don't have enough information + to take action. Please reach out if you have or find the answers we need so + that we can investigate further.