Skip to content

Commit 787d882

Browse files
authored
blast_repo fixes (#396)
auto-publish, dependabot, github-actions, no-response
1 parent 19f6f2a commit 787d882

File tree

4 files changed

+44
-5
lines changed

4 files changed

+44
-5
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
version: 2
44

55
updates:
6-
- package-ecosystem: "github-actions"
7-
directory: "/"
6+
- package-ecosystem: github-actions
7+
directory: /
88
schedule:
9-
interval: "monthly"
9+
interval: monthly
10+
labels:
11+
- autosubmit

.github/workflows/conformance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
os:ubuntu-latest
2727
2828
- name: Setup Go
29-
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9
29+
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753
3030
with:
3131
go-version: '^1.16'
3232

.github/workflows/no-response.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# A workflow to close issues where the author hasn't responded to a request for
2+
# more information; see https://github.com/actions/stale.
3+
4+
name: No Response
5+
6+
# Run as a daily cron.
7+
on:
8+
schedule:
9+
# Every day at 8am
10+
- cron: '0 8 * * *'
11+
12+
# All permissions not specified are set to 'none'.
13+
permissions:
14+
issues: write
15+
pull-requests: write
16+
17+
jobs:
18+
no-response:
19+
runs-on: ubuntu-latest
20+
if: ${{ github.repository_owner == 'GoogleCloudPlatform' }}
21+
steps:
22+
- uses: actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84
23+
with:
24+
# Don't automatically mark inactive issues+PRs as stale.
25+
days-before-stale: -1
26+
# Close needs-info issues and PRs after 14 days of inactivity.
27+
days-before-close: 14
28+
stale-issue-label: "needs-info"
29+
close-issue-message: >
30+
Without additional information we're not able to resolve this issue.
31+
Feel free to add more info or respond to any questions above and we
32+
can reopen the case. Thanks for your contribution!
33+
stale-pr-label: "needs-info"
34+
close-pr-message: >
35+
Without additional information we're not able to resolve this PR.
36+
Feel free to add more info or respond to any questions above.
37+
Thanks for your contribution!

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
pull_request:
77
branches: [ main ]
88
push:
9-
tags: [ '[A-z]+-v[0-9]+.[0-9]+.[0-9]+*' ]
9+
tags: [ '[A-z]+-v[0-9]+.[0-9]+.[0-9]+' ]
1010

1111
jobs:
1212
publish:

0 commit comments

Comments
 (0)