Skip to content

Commit

Permalink
chore: run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
awpala committed Aug 25, 2024
1 parent 0b5a15e commit 2f611a3
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 92 deletions.
118 changes: 59 additions & 59 deletions .github/labeler.yml
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'
66 changes: 33 additions & 33 deletions .github/workflows/stale.yml
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

0 comments on commit 2f611a3

Please sign in to comment.