mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-12-10 00:20:22 -06:00
Remove watchdogs workflow (#62690)
This commit is contained in:
parent
4a957b74ea
commit
0f766a9aa7
45
.github/workflows/error-deltas-watchdog.yaml
vendored
45
.github/workflows/error-deltas-watchdog.yaml
vendored
@ -1,45 +0,0 @@
|
||||
name: 'typescript-error-deltas Watchdog'
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 0 * * 3' # Every Wednesday
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
# Ensure scripts are run with pipefail. See:
|
||||
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#exit-codes-and-error-action-preference
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
check-for-recent:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.repository == 'microsoft/TypeScript'
|
||||
permissions:
|
||||
contents: read # Apparently required to create issues
|
||||
issues: write
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
TAGS: '@navya9singh @RyanCavanaugh @DanielRosenwasser'
|
||||
steps:
|
||||
- name: NewErrors
|
||||
run: | # --json and --jq prints exactly one issue number per line of output
|
||||
DATE=$(date --date="7 days ago" --iso-8601)
|
||||
gh issue list --repo microsoft/typescript --search "[NewErrors] created:>=$DATE" --state all --json number --jq ".[].number" \
|
||||
| grep -qe "[0-9]" \
|
||||
|| gh issue create --repo ${{ github.repository }} --title "No NewErrors issue since $DATE" --body "$TAGS Please check the [pipeline](https://typescript.visualstudio.com/TypeScript/_build?definitionId=48)."
|
||||
- name: ServerErrors TS
|
||||
run: |
|
||||
DATE=$(date --date="7 days ago" --iso-8601)
|
||||
gh issue list --repo microsoft/typescript --search "[ServerErrors][TypeScript] created:>=$DATE" --state all --json number --jq ".[].number" \
|
||||
| grep -qe "[0-9]" \
|
||||
|| gh issue create --repo ${{ github.repository }} --title "No TypeScript ServerErrors issue since $DATE" --body "$TAGS Please check the [pipeline](https://typescript.visualstudio.com/TypeScript/_build?definitionId=59)."
|
||||
- name: ServerErrors JS
|
||||
run: |
|
||||
DATE=$(date --date="7 days ago" --iso-8601)
|
||||
gh issue list --repo microsoft/typescript --search "[ServerErrors][JavaScript] created:>=$DATE" --state all --json number --jq ".[].number" \
|
||||
| grep -qe "[0-9]" \
|
||||
|| gh issue create --repo ${{ github.repository }} --title "No JavaScript ServerErrors issue since $DATE" --body "$TAGS Please check the [pipeline](https://typescript.visualstudio.com/TypeScript/_build?definitionId=58)."
|
||||
Loading…
x
Reference in New Issue
Block a user