Skip to content
This repository has been archived by the owner on Apr 7, 2024. It is now read-only.

chore: enable workflows for release branches #98

Merged
merged 1 commit into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@ name: build

on:
push:
branches: main
branches:
- main
- release-*
pull_request:
branches: main
branches:
- main
- release-*

jobs:
build:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,14 @@ name: "CodeQL"

on:
push:
branches: [ "main" ]
branches:
- main
- release-*
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
branches:
- main
- release-*
schedule:
- cron: '30 5 * * 6'

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/license-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,13 @@ name: License Checker

on:
push:
branches: main
branches:
- main
- release-*
pull_request:
branches: main
branches:
- main
- release-*

permissions:
contents: write
Expand Down
Loading