Skip to content

Commit 0b5a15e

Browse files
committed
chore: merge 'origin/main' into init-cloud-functions
2 parents fec6567 + 1c23e8b commit 0b5a15e

File tree

2 files changed

+92
-55
lines changed

2 files changed

+92
-55
lines changed

.github/labeler.yml

Lines changed: 59 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,59 @@
1-
# Add 'root' label to any root file changes
2-
# Quotation marks are required for the leading asterisk
3-
root:
4-
- changed-files:
5-
- any-glob-to-any-file: '*'
6-
7-
# Add 'AnyChange' label to any changes within the entire repository
8-
AnyChange:
9-
- changed-files:
10-
- any-glob-to-any-file: '**'
11-
12-
# Add 'Documentation' label to any change to .md files within the entire repository
13-
Documentation:
14-
- changed-files:
15-
- any-glob-to-any-file: '**/*.md'
16-
17-
# Add 'source' label to any change to src files within the source dir EXCEPT for the docs sub-folder
18-
source:
19-
- all:
20-
- changed-files:
21-
- any-glob-to-any-file: 'src/**/*'
22-
23-
# Add 'feature' label to any PR where the head branch name starts with `feature` or has a `feature` section in the name
24-
feature:
25-
- head-branch: ['^feature', 'feature']
26-
27-
# Add 'release' label to any PR that is opened against the `main` branch
28-
release:
29-
- base-branch: 'main'
1+
# Add 'root' label to any root file changes
2+
# Quotation marks are required for the leading asterisk
3+
root:
4+
- changed-files:
5+
- any-glob-to-any-file: '*'
6+
7+
# Add 'Documentation' label to any change to .md files within the entire repository
8+
Documentation:
9+
- changed-files:
10+
- any-glob-to-any-file: '**/*.md'
11+
12+
# Add 'source' label to any change to src files within the source dir
13+
source:
14+
- all:
15+
- changed-files:
16+
- any-glob-to-any-file: 'src/**/*'
17+
18+
# Add 'pages' label to any changes within the entire repository
19+
pages:
20+
- changed-files:
21+
- any-glob-to-any-file: 'pages/**/*'
22+
23+
# Add 'public' label to any changes within the entire repository
24+
public:
25+
- changed-files:
26+
- any-glob-to-any-file: 'public/**/*'
27+
28+
# Add 'globals' label to any changes within the entire repository
29+
globals:
30+
- changed-files:
31+
- any-glob-to-any-file: 'globals/**/*'
32+
33+
# Add 'firebase' label to any changes within the entire repository
34+
firebase:
35+
- changed-files:
36+
- any-glob-to-any-file: 'firebase/**/*'
37+
38+
# Add 'context' label to any changes within the entire repository
39+
context:
40+
- changed-files:
41+
- any-glob-to-any-file: 'context/**/*'
42+
43+
# Add 'workflows' label to any changes within the entire repository
44+
workflows:
45+
- changed-files:
46+
- any-glob-to-any-file: '.github/**/*'
47+
48+
# Add 'devcontainer' label to any changes within the entire repository
49+
devcontainer:
50+
- changed-files:
51+
- any-glob-to-any-file: '.devcontainer/**/*'
52+
53+
# Add 'feature' label to any PR where the head branch name starts with `feature` or has a `feature` section in the name
54+
feature:
55+
- head-branch: ['^feature', 'feature']
56+
57+
# Add 'release' label to any PR that is opened against the `main` branch
58+
release:
59+
- base-branch: 'main'

.github/workflows/stale.yml

Lines changed: 33 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,33 @@
1-
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
2-
#
3-
# You can adjust the behavior by modifying this file.
4-
# For more information, see:
5-
# https://github.com/actions/stale
6-
name: Mark stale issues and pull requests
7-
8-
on:
9-
schedule:
10-
- cron: '36 0 * * *'
11-
12-
jobs:
13-
stale:
14-
runs-on: ubuntu-latest
15-
permissions:
16-
issues: write
17-
pull-requests: write
18-
19-
steps:
20-
- uses: actions/stale@v9
21-
with:
22-
repo-token: ${{ secrets.GITHUB_TOKEN }}
23-
stale-issue-message: 'Stale issue message'
24-
stale-pr-message: 'Stale pull request message'
25-
stale-issue-label: 'no-issue-activity'
26-
stale-pr-label: 'no-pr-activity'
1+
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
2+
#
3+
# You can adjust the behavior by modifying this file.
4+
# For more information, see:
5+
# https://github.com/actions/stale
6+
name: Mark stale issues and pull requests
7+
8+
on:
9+
schedule:
10+
- cron: '36 0 * * *'
11+
12+
jobs:
13+
stale:
14+
runs-on: ubuntu-latest
15+
permissions:
16+
issues: write
17+
pull-requests: write
18+
19+
steps:
20+
- uses: actions/stale@v9
21+
with:
22+
repo-token: ${{ secrets.GITHUB_TOKEN }}
23+
stale-issue-label: 'no-issue-activity'
24+
stale-pr-label: 'no-pr-activity'
25+
exempt-issue-labels: Not Stale
26+
exempt-pr-labels: Not Stale
27+
stale-issue-message: >
28+
This issue is stale because it has been open for 60 days with no
29+
activity.
30+
stale-pr-message: >
31+
This pull request is stale because it has been open for 60 days
32+
with no activity.
33+
days-before-close: -1

0 commit comments

Comments
 (0)