Skip to content

Commit

Permalink
chore: sync files with beam-community/common-config (#451)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
thebeambot and github-actions[bot] authored Jun 25, 2024
1 parent d1ec5e4 commit 0d693f1
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 6 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly

- package-ecosystem: mix
directory: "/"
schedule:
interval: weekly
groups:
prod:
dependency-type: production
dev:
dependency-type: development
2 changes: 1 addition & 1 deletion .github/release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"hidden": false
},
{
"type": "chore",
"type": "refactor",
"section": "Miscellaneous",
"hidden": false
}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
Please use one of the following types:
- **feat:** A new feature, resulting in a MINOR version bump."
- **fix:** A bug fix, resulting in a PATCH version bump."
- **refactor:** A code change that neither fixes a bug nor adds a feature, resulting in a PATCH version bump."
- **chore:** Changes unrelated to the release code, resulting in no version bump."
- **revert:** Reverts a previous commit."
- **feat:** A new feature, resulting in a MINOR version bump.
- **fix:** A bug fix, resulting in a PATCH version bump.
- **refactor:** A code change that neither fixes a bug nor adds a feature.
- **chore:** Changes unrelated to the release code, resulting in no version bump.
- **revert:** Reverts a previous commit.
See https://www.conventionalcommits.org/en/v1.0.0/ for more information.
47 changes: 47 additions & 0 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: "Close stale issues and PRs"

on:
workflow_dispatch:
schedule:
- cron: "30 1 * * *"

permissions:
contents: write
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
days-before-issue-stale: 30
days-before-issue-close: 15
days-before-pr-stale: 60
days-before-pr-close: 60

stale-issue-label: "stale:discard"
exempt-issue-labels: "stale:keep"
stale-issue-message: >
This issue has been automatically marked as "stale:discard". We are sorry that we haven't been able to
prioritize it yet.
If this issue still relevant, please leave any comment if you have any new additional information that
helps to solve this issue. We encourage you to create a pull request, if you can. We are happy to help you
with that.
close-issue-message: >
Closing this issue after a prolonged period of inactivity. If this issue is still relevant, feel free to
re-open the issue. Thank you!
stale-pr-label: "stale:discard"
exempt-pr-labels: "stale:keep"
stale-pr-message: >
This pull request has been automatically marked as "stale:discard". **If this pull request is still
relevant, please leave any comment** (for example, "bump"), and we'll keep it open. We are sorry that we
haven't been able to prioritize reviewing it yet.
Your contribution is very much appreciated!.
close-pr-message: >
Closing this pull request after a prolonged period of inactivity. If this issue is still relevant, please
ask for this pull request to be reopened. Thank you!
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# MIT License

Copyright (c) 2024 BEAM Community

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 comments on commit 0d693f1

Please sign in to comment.