Skip to content
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
Next Next commit
ci: add v9.x-dev branch
  • Loading branch information
mdjermanovic committed Dec 6, 2025
commit d3ff9c6418fc96ecfdcf055e9f77cd0ea5c6c47b
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: CI
on:
push:
branches: [main]
branches: [main, v9.x-dev]
pull_request:
branches: [main]
branches: [main, v9.x-dev]

permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ name: "CodeQL"

on:
push:
branches: [main]
branches: [main, v9.x-dev]
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
branches: [main, v9.x-dev]
Comment on lines -16 to +19

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the v8.x-dev branch, this workflow file only triggers on the main branch, but I guess we just forgot to update it?

https://github.com/eslint/eslint/blob/v8.x-dev/.github/workflows/codeql-analysis.yml

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we just forgot to update it?

I believe that was the case.

schedule:
- cron: "28 17 * * 5"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs-ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: CI
on:
push:
branches: [main]
branches: [main, v9.x-dev]
paths:
- "docs/**"

pull_request:
branches: [main]
branches: [main, v9.x-dev]
paths:
- "docs/**"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/types-integration.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: CI
on:
push:
branches: [main]
branches: [main, v9.x-dev]
pull_request:
branches: [main]
branches: [main, v9.x-dev]

permissions:
contents: read
Expand Down
Loading