-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
92 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,59 @@ | ||
# Add 'root' label to any root file changes | ||
# Quotation marks are required for the leading asterisk | ||
root: | ||
- changed-files: | ||
- any-glob-to-any-file: '*' | ||
|
||
# Add 'Documentation' label to any change to .md files within the entire repository | ||
Documentation: | ||
- changed-files: | ||
- any-glob-to-any-file: '**/*.md' | ||
|
||
# Add 'source' label to any change to src files within the source dir | ||
source: | ||
- all: | ||
- changed-files: | ||
- any-glob-to-any-file: 'src/**/*' | ||
|
||
# Add 'pages' label to any changes within the entire repository | ||
pages: | ||
- changed-files: | ||
- any-glob-to-any-file: 'pages/**/*' | ||
|
||
# Add 'public' label to any changes within the entire repository | ||
public: | ||
- changed-files: | ||
- any-glob-to-any-file: 'public/**/*' | ||
|
||
# Add 'globals' label to any changes within the entire repository | ||
globals: | ||
- changed-files: | ||
- any-glob-to-any-file: 'globals/**/*' | ||
|
||
# Add 'firebase' label to any changes within the entire repository | ||
firebase: | ||
- changed-files: | ||
- any-glob-to-any-file: 'firebase/**/*' | ||
|
||
# Add 'context' label to any changes within the entire repository | ||
context: | ||
- changed-files: | ||
- any-glob-to-any-file: 'context/**/*' | ||
|
||
# Add 'workflows' label to any changes within the entire repository | ||
workflows: | ||
- changed-files: | ||
- any-glob-to-any-file: '.github/**/*' | ||
|
||
# Add 'devcontainer' label to any changes within the entire repository | ||
devcontainer: | ||
- changed-files: | ||
- any-glob-to-any-file: '.devcontainer/**/*' | ||
|
||
# Add 'feature' label to any PR where the head branch name starts with `feature` or has a `feature` section in the name | ||
feature: | ||
- head-branch: ['^feature', 'feature'] | ||
|
||
# Add 'release' label to any PR that is opened against the `main` branch | ||
release: | ||
- base-branch: 'main' | ||
# Add 'root' label to any root file changes | ||
# Quotation marks are required for the leading asterisk | ||
root: | ||
- changed-files: | ||
- any-glob-to-any-file: '*' | ||
|
||
# Add 'Documentation' label to any change to .md files within the entire repository | ||
Documentation: | ||
- changed-files: | ||
- any-glob-to-any-file: '**/*.md' | ||
|
||
# Add 'source' label to any change to src files within the source dir | ||
source: | ||
- all: | ||
- changed-files: | ||
- any-glob-to-any-file: 'src/**/*' | ||
|
||
# Add 'pages' label to any changes within the entire repository | ||
pages: | ||
- changed-files: | ||
- any-glob-to-any-file: 'pages/**/*' | ||
|
||
# Add 'public' label to any changes within the entire repository | ||
public: | ||
- changed-files: | ||
- any-glob-to-any-file: 'public/**/*' | ||
|
||
# Add 'globals' label to any changes within the entire repository | ||
globals: | ||
- changed-files: | ||
- any-glob-to-any-file: 'globals/**/*' | ||
|
||
# Add 'firebase' label to any changes within the entire repository | ||
firebase: | ||
- changed-files: | ||
- any-glob-to-any-file: 'firebase/**/*' | ||
|
||
# Add 'context' label to any changes within the entire repository | ||
context: | ||
- changed-files: | ||
- any-glob-to-any-file: 'context/**/*' | ||
|
||
# Add 'workflows' label to any changes within the entire repository | ||
workflows: | ||
- changed-files: | ||
- any-glob-to-any-file: '.github/**/*' | ||
|
||
# Add 'devcontainer' label to any changes within the entire repository | ||
devcontainer: | ||
- changed-files: | ||
- any-glob-to-any-file: '.devcontainer/**/*' | ||
|
||
# Add 'feature' label to any PR where the head branch name starts with `feature` or has a `feature` section in the name | ||
feature: | ||
- head-branch: ['^feature', 'feature'] | ||
|
||
# Add 'release' label to any PR that is opened against the `main` branch | ||
release: | ||
- base-branch: 'main' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. | ||
# | ||
# You can adjust the behavior by modifying this file. | ||
# For more information, see: | ||
# https://github.com/actions/stale | ||
name: Mark stale issues and pull requests | ||
|
||
on: | ||
schedule: | ||
- cron: '36 0 * * *' | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-label: 'no-issue-activity' | ||
stale-pr-label: 'no-pr-activity' | ||
exempt-issue-labels: Not Stale | ||
exempt-pr-labels: Not Stale | ||
stale-issue-message: > | ||
This issue is stale because it has been open for 60 days with no | ||
activity. | ||
stale-pr-message: > | ||
This pull request is stale because it has been open for 60 days | ||
with no activity. | ||
days-before-close: -1 | ||
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. | ||
# | ||
# You can adjust the behavior by modifying this file. | ||
# For more information, see: | ||
# https://github.com/actions/stale | ||
name: Mark stale issues and pull requests | ||
|
||
on: | ||
schedule: | ||
- cron: '36 0 * * *' | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-label: 'no-issue-activity' | ||
stale-pr-label: 'no-pr-activity' | ||
exempt-issue-labels: Not Stale | ||
exempt-pr-labels: Not Stale | ||
stale-issue-message: > | ||
This issue is stale because it has been open for 60 days with no | ||
activity. | ||
stale-pr-message: > | ||
This pull request is stale because it has been open for 60 days | ||
with no activity. | ||
days-before-close: -1 |