Skip to content

Commit

Permalink
Merge pull request #6 from crs-k/setup-and-housekeeping
Browse files Browse the repository at this point in the history
Setup-and-housekeeping
  • Loading branch information
crs-k authored Jan 12, 2022
2 parents 82af0b0 + 80f7984 commit a695324
Show file tree
Hide file tree
Showing 7 changed files with 10,410 additions and 10 deletions.
16 changes: 12 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,17 @@ updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
interval: "daily"
time: "18:00"
timezone: "America/New_York"
labels:
- "dependencies 🛠"

- package-ecosystem: npm
directory: /
- package-ecosystem: "npm" # See documentation for possible values.
directory: "/" # Location of package manifests
schedule:
interval: daily
interval: "daily"
time: "18:00"
timezone: "America/New_York"
labels:
- "dependencies 🛠"
3 changes: 3 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Add 'documentation' label to any change within the docs dir
documentation 📓:
- '*.js'
24 changes: 24 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
changelog:
exclude:
labels:
- "ignore for release ✂️"
categories:
- title: ☄️ Breaking Changes
labels:
- "breaking change ☄️"
- title: 🎉 New Features
labels:
- "enhancement 💎"
- title: 🐛 Bug Fixes
labels:
- "bug 🐛"
- title: 🧰 Maintenance
labels:
- "chore 🧹"
- "dependencies 🛠"
- title: 📓 Documentation
labels:
- "documentation 📓"
- title: 🃏 Miscellaneous
labels:
- "*"
12 changes: 12 additions & 0 deletions .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Dependabot Pull Request Approve and Merge

on: pull_request_target

permissions:
pull-requests: write
contents: write

jobs:
dependabot:
uses: Worthy-Cause/shared-workflows/.github/workflows/dependabot-automerge.yml@v1.0.0

11 changes: 11 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: "Pull Request Labeler"
on:
- pull_request_target

jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v3
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
14 changes: 14 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '14 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
stale-issue-message: 'This issue is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
days-before-stale: 14
days-before-close: 7
Loading

0 comments on commit a695324

Please sign in to comment.