# Copyright 2013 The Flutter Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. name: No Response on: schedule: # Schedule for every 15 minutes. - cron: '*/15 * * * *' # By specifying the access of one of the scopes, all of those that are not # specified are set to 'none'. permissions: issues: write pull-requests: write jobs: noResponse: runs-on: ubuntu-latest if: ${{ github.repository == 'flutter/flutter' }} steps: - name: Checkout uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 - name: No Response uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0 with: github-token: ${{ github.token }} script: | const script = require('./.github/scripts/no-response.js'); await script({github, context});