Skip to content

chore: Update NOTICE copyright year to 2026 #24

chore: Update NOTICE copyright year to 2026

chore: Update NOTICE copyright year to 2026 #24

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
name: Add Git Trailers to PR commits
on:
pull_request_review:
types: [submitted]
pull_request:
types: [synchronize, labeled]
concurrency:
group: >-
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
permissions: read-all
jobs:
# commit-coverage:
# name: Commit coverage report
# if: github.event.review.state == 'approved'
# uses: ./.github/workflows/coverage-report.yml
# with:
# commit: true
# secrets: inherit
check-pr-status:
# needs: commit-coverage
name: Check PR status
if: always() && github.event.pull_request.base.ref == 'main'
uses: nubificus/vaccel/.github/workflows/check-pr-status.yml@main
with:
pr-number: >-
${{ github.event.pull_request_review.pull_request.number ||
github.event.pull_request.number }}
secrets: inherit
add-git-trailers:
needs: check-pr-status
name: Add Git Trailers to PR commits
if: >-
always() &&
github.event.pull_request.base.ref == 'main' &&
needs.check-pr-status.outputs.is-approved == 'true'
uses: nubificus/vaccel/.github/workflows/add-git-trailers.yml@main
secrets: inherit