Skip to content
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
6 changes: 5 additions & 1 deletion .github/workflows/changelog_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@
name: Changelog
on:
pull_request:
push:
branches:
- main
workflow_dispatch:

permissions:
contents: read

jobs:
check-newsfile:
if: ${{ (github.base_ref == 'main' || contains(github.base_ref, 'release-')) && github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]' }}
if: ${{ (github.event_name == 'pull_request') && (github.base_ref == 'main' || contains(github.base_ref, 'release-')) && github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/matrix-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ name: Build matrix-tool Docker Images

on:
pull_request:
workflow_dispatch:
push:
branches:
- main
tags:
- 'matrix-tools-*'
workflow_dispatch:

env:
REGISTRY_IMAGE: ghcr.io/${{ github.repository }}/matrix-tools
Expand Down
1 change: 1 addition & 0 deletions newsfragments/599.internal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CI: run the preview-changelog job on main and manually as well as PRs.
Loading