Skip to content

Commit 056a397

Browse files
authored
blast_repo fixes (#2680)
Dependabot GitHub Action No Response
1 parent 7d2efdc commit 056a397

File tree

3 files changed

+45
-2
lines changed

3 files changed

+45
-2
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Dependabot configuration file.
2+
# See https://docs.github.com/en/code-security/dependabot/dependabot-version-updates
3+
4+
version: 2
5+
updates:
6+
- package-ecosystem: github-actions
7+
directory: /
8+
schedule:
9+
interval: monthly

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
)
2727
2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
3030
- name: Install latex tools
3131
run: |
3232
sudo apt-get update -qq
@@ -41,7 +41,7 @@ jobs:
4141
make
4242
mkdir firebase
4343
cp dartLangSpec.pdf firebase/DartLangSpecDraft.pdf
44-
- uses: FirebaseExtended/action-hosting-deploy@0e16177d01e10c4560245404f959e75a9c633533
44+
- uses: FirebaseExtended/action-hosting-deploy@4d0d0023f1d92b9b7d16dda64b3d7abd2c98974b
4545
with:
4646
repoToken: '${{ secrets.GITHUB_TOKEN }}'
4747
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_DART_SPECIFICATION }}'

.github/workflows/no-response.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# A workflow to close issues where the author hasn't responded to a request for
2+
# more information; see https://github.com/godofredoc/no-response for docs.
3+
4+
name: No Response
5+
6+
# Both `issue_comment` and `scheduled` event types are required.
7+
on:
8+
issue_comment:
9+
types: [created]
10+
schedule:
11+
# Schedule for five minutes after the hour, every hour
12+
- cron: '5 * * * *'
13+
14+
# All permissions not specified are set to 'none'.
15+
permissions:
16+
issues: write
17+
18+
jobs:
19+
noResponse:
20+
runs-on: ubuntu-latest
21+
if: ${{ github.repository_owner == 'dart-lang' }}
22+
steps:
23+
- uses: godofredoc/no-response@0ce2dc0e63e1c7d2b87752ceed091f6d32c9df09
24+
with:
25+
responseRequiredLabel: "needs-info"
26+
responseRequiredColor: 4774bc
27+
daysUntilClose: 14
28+
# Comment to post when closing an Issue for lack of response.
29+
closeComment: >
30+
Without additional information we're not able to resolve this
31+
issue, so it will be closed at this time. You're still free to add
32+
more info and respond to any questions above, though. We'll reopen
33+
the case if you do. Thanks for your contribution!
34+
token: ${{ github.token }}

0 commit comments

Comments
 (0)