File tree 6 files changed +68
-32
lines changed
6 files changed +68
-32
lines changed Original file line number Diff line number Diff line change
1
+ # editorconfig.org
1
2
root = true
2
3
3
4
[* ]
4
- indent_style = tab
5
+ indent_style = space
6
+ indent_size = 2
5
7
end_of_line = lf
6
8
charset = utf-8
7
9
trim_trailing_whitespace = true
8
10
insert_final_newline = true
9
11
10
- [* .yml ]
11
- indent_style = space
12
- indent_size = 2
12
+ [* .md ]
13
+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change
1
+ # .github/release.yml
2
+
3
+ changelog :
4
+ exclude :
5
+ labels :
6
+ - documentation
7
+ - ignore-for-release
8
+ categories :
9
+ - title : Breaking Changes
10
+ labels :
11
+ - breaking
12
+ exclude :
13
+ labels :
14
+ - dependencies
15
+ - title : New Features
16
+ labels :
17
+ - enhancement
18
+ exclude :
19
+ labels :
20
+ - dependencies
21
+ - title : Bug Fixes
22
+ labels :
23
+ - bug
24
+ exclude :
25
+ labels :
26
+ - dependencies
27
+ - title : Security Patches
28
+ labels :
29
+ - security
30
+ - " security"
31
+ exclude :
32
+ labels :
33
+ - dependencies
34
+ - title : Dependencies
35
+ labels :
36
+ - dependencies
37
+ - title : Maintenance
38
+ labels :
39
+ - " *"
40
+ exclude :
41
+ labels :
42
+ - dependencies
Original file line number Diff line number Diff line change @@ -3,5 +3,7 @@ on: pull_request_target
3
3
permissions :
4
4
pull-requests : write
5
5
jobs :
6
- auto-approve :
7
- uses : palashmon/reusable-workflows/.github/workflows/auto-approve.yml@main
6
+ apply :
7
+ if : github.actor == 'renovate[bot]'
8
+ uses : palashmon/reusable-workflows/.github/workflows/auto-approve.yml@main
9
+ secrets : inherit
Original file line number Diff line number Diff line change 5
5
branches :
6
6
- main
7
7
- master
8
- pull_request : # PRs to main and master branches
8
+ pull_request : # PRs to main branches
9
9
workflow_dispatch : # manual trigger
10
10
11
- # Control the concurrency of workflow runs
12
- # so that you can ensure that only one workflow runs at a time in a specific context.
13
11
concurrency :
14
12
group : ${{ github.workflow }}-${{ github.event.number || github.sha }}
15
13
cancel-in-progress : true
Original file line number Diff line number Diff line change
1
+ name : PR labeler
2
+ on :
3
+ - pull_request_target
4
+ jobs :
5
+ apply :
6
+ if : ${{ github.event.pull_request.head.repo.full_name == github.repository }} # only PRs from this repo
7
+ uses : palashmon/reusable-workflows/.github/workflows/labeler-reusable.yml@main
8
+ secrets : inherit
Original file line number Diff line number Diff line change 1
- # This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
2
- #
3
- # You can adjust the behavior by modifying this file.
4
- # For more information, see:
5
- # https://github.com/actions/stale
6
- name : Mark stale issues and pull requests
1
+ name : ' Close stale issues and PRs'
7
2
on :
8
3
schedule :
9
- - cron : " */10 5 * * *"
4
+ - cron : ' 30 1 * * *'
5
+ permissions :
6
+ issues : write
7
+ pull-requests : write
10
8
jobs :
11
- stale :
12
- runs-on : ubuntu-latest
13
- permissions :
14
- issues : write
15
- pull-requests : write
16
- steps :
17
- - uses : actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v9
18
- with :
19
- repo-token : ${{ secrets.GITHUB_TOKEN }}
20
- days-before-stale : 365
21
- stale-issue-message : ' This issue is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
22
- stale-pr-message : ' This PR is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
23
- close-issue-message : ' This issue was closed because it has been stalled for 7 days with no activity.'
24
- close-pr-message : ' This PR was closed because it has been stalled for 7 days with no activity.'
25
- exempt-issue-labels : ' Help Wanted, Good first issue, Never gets stale'
26
- exempt-pr-labels : ' Help Wanted, Never gets stale'
9
+ apply :
10
+ uses : palashmon/reusable-workflows/.github/workflows/stale.yml@main
11
+ secrets : inherit
You can’t perform that action at this time.
0 commit comments