Skip to content

Commit d30fa6f

Browse files
chore: sync files with beam-community/common-config (#326)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4682c70 commit d30fa6f

File tree

6 files changed

+86
-30
lines changed

6 files changed

+86
-30
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
version: 2
22
updates:
3-
- package-ecosystem: mix
4-
directory: "/"
5-
schedule:
6-
interval: weekly
7-
open-pull-requests-limit: 999
3+
- package-ecosystem: github-actions
4+
directory: "/"
5+
schedule:
6+
interval: weekly
7+
8+
- package-ecosystem: mix
9+
directory: "/"
10+
schedule:
11+
interval: weekly
12+
groups:
13+
prod:
14+
dependency-type: production
15+
dev:
16+
dependency-type: development

.github/release-please-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"hidden": false
1414
},
1515
{
16-
"type": "chore",
16+
"type": "refactor",
1717
"section": "Miscellaneous",
1818
"hidden": false
1919
}

.github/workflows/pr.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
3535
Please use one of the following types:
3636
37-
- **feat:** A new feature, resulting in a MINOR version bump."
38-
- **fix:** A bug fix, resulting in a PATCH version bump."
39-
- **refactor:** A code change that neither fixes a bug nor adds a feature, resulting in a PATCH version bump."
40-
- **chore:** Changes unrelated to the release code, resulting in no version bump."
41-
- **revert:** Reverts a previous commit."
37+
- **feat:** A new feature, resulting in a MINOR version bump.
38+
- **fix:** A bug fix, resulting in a PATCH version bump.
39+
- **refactor:** A code change that neither fixes a bug nor adds a feature.
40+
- **chore:** Changes unrelated to the release code, resulting in no version bump.
41+
- **revert:** Reverts a previous commit.
4242
4343
See https://www.conventionalcommits.org/en/v1.0.0/ for more information.

.github/workflows/stale.yaml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: "Close stale issues and PRs"
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: "30 1 * * *"
7+
8+
permissions:
9+
contents: write
10+
issues: write
11+
pull-requests: write
12+
13+
jobs:
14+
stale:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/stale@v8
18+
with:
19+
days-before-issue-stale: 30
20+
days-before-issue-close: 15
21+
days-before-pr-stale: 60
22+
days-before-pr-close: 60
23+
24+
stale-issue-label: "stale:discard"
25+
exempt-issue-labels: "stale:keep"
26+
stale-issue-message: >
27+
This issue has been automatically marked as "stale:discard". We are sorry that we haven't been able to
28+
prioritize it yet.
29+
30+
If this issue still relevant, please leave any comment if you have any new additional information that
31+
helps to solve this issue. We encourage you to create a pull request, if you can. We are happy to help you
32+
with that.
33+
34+
close-issue-message: >
35+
Closing this issue after a prolonged period of inactivity. If this issue is still relevant, feel free to
36+
re-open the issue. Thank you!
37+
38+
stale-pr-label: "stale:discard"
39+
exempt-pr-labels: "stale:keep"
40+
stale-pr-message: >
41+
This pull request has been automatically marked as "stale:discard". **If this pull request is still
42+
relevant, please leave any comment** (for example, "bump"), and we'll keep it open. We are sorry that we
43+
haven't been able to prioritize reviewing it yet.
44+
Your contribution is very much appreciated!.
45+
close-pr-message: >
46+
Closing this pull request after a prolonged period of inactivity. If this issue is still relevant, please
47+
ask for this pull request to be reopened. Thank you!

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
elixir 1.16
2-
erlang 26.0
2+
erlang 26.0

LICENSE

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
The MIT License (MIT)
1+
# MIT License
22

3-
Copyright (c) 2015 Jason S.
3+
Copyright (c) 2024 BEAM Community
44

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

12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
2215

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

0 commit comments

Comments
 (0)