Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to latest version of the github-action-required-labels and changed-files actions #17194

Merged
merged 3 commits into from
Oct 12, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: github.event_name == 'pull_request'
name: Ensure category label
uses: mheap/github-action-required-labels@v1
uses: mheap/github-action-required-labels@v2.1.0
with:
count: 1
labels: category:new feature, category:user api change, category:plugin api
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: github.event_name == 'pull_request'
name: Ensure category label
uses: mheap/github-action-required-labels@v1
uses: mheap/github-action-required-labels@v2.1.0
with:
count: 1
labels: category:new feature, category:user api change, category:plugin api
Expand All @@ -747,7 +747,7 @@ jobs:
fetch-depth: 10
- id: files
name: Get changed files
uses: tj-actions/changed-files@v23.1
uses: tj-actions/changed-files@v32.0.0
with:
files_ignore: docs/**|build-support/bin/generate_user_list.py
files_ignore_separator: '|'
Expand Down
4 changes: 2 additions & 2 deletions build-support/bin/generate_github_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def is_docs_only() -> Jobs:
{
"id": "files",
"name": "Get changed files",
"uses": "tj-actions/changed-files@v23.1",
"uses": "tj-actions/changed-files@v32.0.0",
"with": {"files_ignore_separator": "|", "files_ignore": "|".join(docs_files)},
},
{
Expand All @@ -132,7 +132,7 @@ def ensure_category_label() -> Sequence[Step]:
{
"if": "github.event_name == 'pull_request'",
"name": "Ensure category label",
"uses": "mheap/github-action-required-labels@v1",
"uses": "mheap/github-action-required-labels@v2.1.0",
"env": {"GITHUB_TOKEN": gha_expr("secrets.GITHUB_TOKEN")},
"with": {
"mode": "exactly",
Expand Down