Skip to content

Commit

Permalink
chore: enable github actions for next branch (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
muhlemmer authored Mar 2, 2023
1 parent 1eb4ee1 commit fc1a80d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: "Code scanning - action"

on:
push:
branches: [main, ]
branches: [main,next]
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
branches: [main,next]
schedule:
- cron: '0 11 * * 0'

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- next
tags-ignore:
- '**'
pull_request:
Expand Down Expand Up @@ -31,7 +32,7 @@ jobs:
release:
runs-on: ubuntu-20.04
needs: [test]
if: ${{ github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main' }}
if: ${{ github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/next' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
Expand Down

0 comments on commit fc1a80d

Please sign in to comment.