fix: Missed copyright years in new files. #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Detect Release | ||
description: Runs on any merged release PR (actioned by prepare_release.yml) | ||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
jobs: | ||
Checkout: | ||
if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.title, '[Release]') | ||
uses: "./.github/workflows/_checkout.yml" | ||
secrets: inherit | ||
with: | ||
checkoutRef: ${{ github.event.pull_request.merge_commit_sha }} | ||
publishType: 'release' | ||
BuildAndPackage: | ||
needs: [Checkout] | ||
uses: "./.github/workflows/_build_and_package.yml" | ||
with: | ||
currentVersion: ${{ needs.Checkout.outputs.currentVersion }} | ||
qtVersion: ${{ needs.Checkout.outputs.qtVersion }} | ||
antlrVersion: ${{ needs.Checkout.outputs.antlrVersion }} | ||
conanHash: ${{ needs.Checkout.outputs.conanHash }} | ||
nixHash: ${{ needs.Checkout.outputs.nixHash }} | ||
Web: | ||
needs: [Checkout] | ||
uses: "./.github/workflows/_website.yml" | ||
with: | ||
publishType: 'release' | ||
displayMajorVersion: ${{ needs.Checkout.outputs.majorVersion }} | ||
displayMinorVersion: ${{ needs.Checkout.outputs.minorVersion }} | ||
hugoVersion: ${{ needs.Checkout.outputs.hugoVersion }} | ||
secrets: inherit | ||
Publish: | ||
needs: [Checkout,BuildAndPackage,Web] | ||
uses: "./.github/workflows/_publish.yml" | ||
Check failure on line 41 in .github/workflows/detect_release.yml GitHub Actions / Detect ReleaseInvalid workflow file
|
||
with: | ||
publishType: 'release' | ||
releaseTag: ${{ needs.Checkout.outputs.currentVersion }} | ||
releaseName: "Release ${{ needs.Checkout.outputs.currentVersion }}" | ||
releaseBody: ${{ github.event.pull_request.body }} | ||
secrets: inherit |