Skip to content

Commit

Permalink
ci(release): add eslint-9 as a release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
fmauNeko committed Dec 17, 2024
1 parent d80c91a commit e435778
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/push-and-pr.workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- master
- beta
- '[0-9]+-dev'
- eslint-9
pull_request:

jobs:
Expand Down Expand Up @@ -45,7 +46,7 @@ jobs:

release:
name: Release process
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/beta') }}
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/eslint-9') }}
needs: [lint, functional-tests]
runs-on: ubuntu-latest
permissions:
Expand Down
4 changes: 4 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
{
"name": "beta",
"prerelease": true
},
{
"name": "eslint-9",
"prerelease": true
}
]
}

0 comments on commit e435778

Please sign in to comment.