- Added `go1.24.0.linux-amd64.tar.gz` to `.gitignore`. - Removed unnecessary newline in `.mergify.yml`. - Updated `codecov.yml` to correct indentation for ignored files. - Enhanced `Makefile` to support linting on Windows. - Adjusted `.github/dependabot.yml` for proper indentation. - Fixed string quotes in `.github/workflows/checks.yml`. - Modified `pkg/container/util_windows.go` to ignore unused parameter. - Updated error handling in `pkg/lookpath/lp_windows.go`. - Refactored `pkg/runner/step_action_remote.go` to improve URL handling. - Updated `pkg/runner/hashfiles/index.js` with significant changes for better performance and structure.
78 lines
1.9 KiB
YAML
78 lines
1.9 KiB
YAML
pull_request_rules:
|
|
- name: warn on conflicts
|
|
conditions:
|
|
- -draft
|
|
- -closed
|
|
- -merged
|
|
- conflict
|
|
actions:
|
|
label:
|
|
add:
|
|
- conflict
|
|
- name: remove conflict label if not needed
|
|
conditions:
|
|
- -conflict
|
|
actions:
|
|
label:
|
|
remove:
|
|
- conflict
|
|
- name: warn on needs-work
|
|
conditions:
|
|
- -draft
|
|
- -closed
|
|
- -merged
|
|
- or:
|
|
- check-failure=lint
|
|
- check-failure=test-linux
|
|
- check-failure=codecov/patch
|
|
- check-failure=codecov/project
|
|
- check-failure=snapshot
|
|
actions:
|
|
label:
|
|
add:
|
|
- needs-work
|
|
- name: remove needs-work label if not needed
|
|
conditions:
|
|
- check-success=lint
|
|
- check-success=test-linux
|
|
- check-success=codecov/patch
|
|
- check-success=codecov/project
|
|
- check-success=snapshot
|
|
actions:
|
|
label:
|
|
remove:
|
|
- needs-work
|
|
- name: Automatic merge on approval
|
|
conditions: []
|
|
actions:
|
|
queue:
|
|
queue_rules:
|
|
- name: default
|
|
queue_conditions:
|
|
- '#changes-requested-reviews-by=0'
|
|
- or:
|
|
- 'approved-reviews-by=@nektos/act-committers'
|
|
- 'author~=^dependabot(|-preview)\[bot\]$'
|
|
- and:
|
|
- 'approved-reviews-by=@nektos/act-maintainers'
|
|
- '#approved-reviews-by>=2'
|
|
- and:
|
|
- 'author=@nektos/act-maintainers'
|
|
- 'approved-reviews-by=@nektos/act-maintainers'
|
|
- '#approved-reviews-by>=1'
|
|
- -draft
|
|
- -merged
|
|
- -closed
|
|
- check-success=lint
|
|
- check-success=test-linux
|
|
- check-success=codecov/patch
|
|
- check-success=codecov/project
|
|
- check-success=snapshot
|
|
merge_conditions:
|
|
- check-success=lint
|
|
- check-success=test-linux
|
|
- check-success=codecov/patch
|
|
- check-success=codecov/project
|
|
- check-success=snapshot
|
|
merge_method: squash
|