Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Enable jobs on merge queues #148

Merged
merged 1 commit into from
Apr 5, 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
2 changes: 2 additions & 0 deletions .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ name: Branch Checks

on:
pull_request:
merge_group:

permissions: {}

jobs:
target_devel:
name: PR targets devel
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Check that the PR targets devel
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/codeowners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
paths:
- 'CODEOWNERS'
- 'CODEOWNERS.in'
merge_group:
paths:
- 'CODEOWNERS'
- 'CODEOWNERS.in'

permissions: {}

Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ name: Linting

on:
pull_request:
merge_group:

permissions: {}

jobs:
apply-suggestions-commits:
name: 'No "Apply suggestions from code review" Commits'
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Get PR commits
Expand All @@ -33,6 +35,21 @@ jobs:
flags: 'i'
error: 'Fixup commits should be squashed into the commits under review'

dco:
name: DCO
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Get PR commits
id: 'get-pr-commits'
uses: tim-actions/get-pr-commits@8673d84c368f480628607dbe21c88545811ef23a
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Run DCO check
uses: tim-actions/dco@f2279e6e62d5a7d9115b0cb8e837b777b1b02e21
with:
commits: ${{ steps.get-pr-commits.outputs.commits }}

gitlint:
name: Commit Message(s)
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Unit Tests

on:
pull_request:
merge_group:
push:
tags:
- 'v**'
Expand Down