Compare commits
9 Commits
v35.7.12-s
...
v35.8.0-se
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
21d7a75834 | ||
|
|
7ecfc6730d | ||
|
|
feea5e1e75 | ||
|
|
cbed54e499 | ||
|
|
8b07761656 | ||
|
|
700dcca38c | ||
|
|
e45cb98580 | ||
|
|
ae82d8ef19 | ||
|
|
87380821bf |
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@@ -7,9 +7,11 @@ on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
- sec
|
||||
pull_request_review:
|
||||
branches:
|
||||
- main
|
||||
- sec
|
||||
|
||||
jobs:
|
||||
shellcheck:
|
||||
|
||||
21
HISTORY.md
21
HISTORY.md
@@ -1,5 +1,26 @@
|
||||
# Changelog
|
||||
|
||||
# [35.7.12](https://github.com/tj-actions/changed-files/compare/v35.7.11...v35.7.12) - (2023-04-07)
|
||||
|
||||
## <!-- 1 -->🐛 Bug Fixes
|
||||
|
||||
- Error finding merge base ([#1077](https://github.com/tj-actions/changed-files/issues/1077)) ([b109d83](https://github.com/tj-actions/changed-files/commit/b109d83a62e94cf7c522bf6c15cb25c175850b16)) - (Tonye Jack)
|
||||
|
||||
## <!-- 26 -->🔄 Update
|
||||
|
||||
- Update README.md ([b109d82](https://github.com/tj-actions/changed-files/commit/b109d82bbfde6cb823cdc004997909c7bea60617)) - (Tonye Jack)
|
||||
|
||||
## <!-- 7 -->⚙️ Miscellaneous Tasks
|
||||
|
||||
- **deps:** Update peter-evans/create-pull-request action to v5 (main) ([#1075](https://github.com/tj-actions/changed-files/issues/1075)) ([5c78c9f](https://github.com/tj-actions/changed-files/commit/5c78c9fe10b5544a89fd01d2bb4e87469c6170e7)) - (renovate[bot])
|
||||
- **deps:** Update tj-actions/json2file action to v1.4.1 (main) ([#1073](https://github.com/tj-actions/changed-files/issues/1073)) ([2f5a1b0](https://github.com/tj-actions/changed-files/commit/2f5a1b0ae264af377f8d0a68406b5ee26292fcc9)) - (renovate[bot])
|
||||
|
||||
## <!-- 9 -->⬆️ Upgrades
|
||||
|
||||
- Upgraded to v35.7.11 ([#1072](https://github.com/tj-actions/changed-files/issues/1072))
|
||||
|
||||
Co-authored-by: jackton1 <jackton1@users.noreply.github.com> ([0302ff2](https://github.com/tj-actions/changed-files/commit/0302ff21cd4fb0ec0b9db26224ec891d438ecaf2)) - (Tonye Jack)
|
||||
|
||||
# [35.7.11](https://github.com/tj-actions/changed-files/compare/v35.7.10...v35.7.11) - (2023-04-04)
|
||||
|
||||
## <!-- 7 -->⚙️ Miscellaneous Tasks
|
||||
|
||||
31
README.md
31
README.md
@@ -756,36 +756,19 @@ And many more...
|
||||
|
||||
With the switch from using grep's Extended regex to match files to the natively supported workflow glob pattern matching syntax introduced in [v13](https://github.com/tj-actions/changed-files/releases/tag/v13) you'll need to modify patterns used to match `files`.
|
||||
|
||||
**BEFORE**
|
||||
|
||||
```yml
|
||||
```diff
|
||||
...
|
||||
|
||||
- name: Get specific changed files
|
||||
id: changed-files-specific
|
||||
uses: tj-actions/changed-files@v12.2
|
||||
with:
|
||||
files: |
|
||||
\.sh$
|
||||
.(sql|py)$
|
||||
^(mynewfile|custom)
|
||||
```
|
||||
|
||||
**AFTER**
|
||||
|
||||
```yml
|
||||
...
|
||||
|
||||
- name: Get specific changed files
|
||||
id: changed-files-specific
|
||||
uses: tj-actions/changed-files@v24
|
||||
with:
|
||||
files: |
|
||||
*.sh
|
||||
*.sql
|
||||
*.py
|
||||
mynewfile
|
||||
custom/**
|
||||
- \.sh$
|
||||
- .(sql|py)$
|
||||
- ^(dir1|dir2)
|
||||
+ *.{sh,sql,py}
|
||||
+ dir1
|
||||
+ dir2
|
||||
```
|
||||
|
||||
* Free software: [MIT license](LICENSE)
|
||||
|
||||
@@ -208,7 +208,7 @@ runs:
|
||||
INPUT_FETCH_DEPTH: ${{ inputs.fetch_depth }}
|
||||
INPUT_SINCE_LAST_REMOTE_COMMIT: ${{ inputs.since_last_remote_commit }}
|
||||
- name: Glob match
|
||||
uses: tj-actions/glob@825a28bd3761909f83c56df3a13ccd5dbfa367b6 # v16.14
|
||||
uses: tj-actions/glob@6056e69d50df3ce28e618aceb0a00203bb2d2de0 # v17.0.1
|
||||
id: glob
|
||||
with:
|
||||
files: ${{ inputs.files }}
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
"config:base"
|
||||
],
|
||||
"enabled": true,
|
||||
"prHourlyLimit": 10,
|
||||
"prConcurrentLimit": 5,
|
||||
"prHourlyLimit": 30,
|
||||
"prConcurrentLimit": 10,
|
||||
"rebaseWhen": "behind-base-branch",
|
||||
"addLabels": [
|
||||
"dependencies",
|
||||
|
||||
Reference in New Issue
Block a user