mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-06 20:15:33 -05:00
* upload-artifact * codeql-action * create-pr * docker * github-script * sticky-pull-request-comment * action-download-artifact * note
69 lines
2.5 KiB
YAML
69 lines
2.5 KiB
YAML
name: Release notes
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
release-notes:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check if triggered by bot
|
|
id: bot-check
|
|
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
|
|
with:
|
|
script: |
|
|
const { data: commit } = await github.rest.git.getCommit({
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
commit_sha: context.payload.pull_request.head.sha,
|
|
});
|
|
const skip = commit.author.name === 'github-actions[bot]'
|
|
&& commit.message.startsWith('Generate release notes');
|
|
console.log(`Head commit by "${commit.author.name}": ${commit.message.split('\n')[0]}`);
|
|
console.log(`Skip: ${skip}`);
|
|
core.setOutput('skip', String(skip));
|
|
|
|
- name: Checkout
|
|
if: steps.bot-check.outputs.skip != 'true'
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
fetch-depth: 0
|
|
token: ${{ secrets.ACTIONS_UPDATE_TOKEN || github.token }}
|
|
|
|
- name: Get changed files
|
|
if: steps.bot-check.outputs.skip != 'true'
|
|
id: changed-files
|
|
run: |
|
|
git fetch origin ${{ github.base_ref }}
|
|
CHANGED_FILES=$(git diff --name-only origin/${{ github.base_ref }}...HEAD)
|
|
NON_DOCS_FILES=$(echo "$CHANGED_FILES" | grep -v -e "^packages/docs/" -e "^\.github/actions/docs-spelling/" || true)
|
|
|
|
if [ -z "$NON_DOCS_FILES" ] && [ -n "$CHANGED_FILES" ]; then
|
|
echo "only_docs=true" >> $GITHUB_OUTPUT
|
|
echo "only documentation files changed, skipping release notes check"
|
|
else
|
|
echo "only_docs=false" >> $GITHUB_OUTPUT
|
|
fi
|
|
|
|
- name: Check release notes
|
|
if: >-
|
|
steps.bot-check.outputs.skip != 'true'
|
|
&& startsWith(github.head_ref, 'release/') == false
|
|
&& steps.changed-files.outputs.only_docs != 'true'
|
|
uses: ./.github/actions/release-notes/check
|
|
|
|
- name: Generate release notes
|
|
if: >-
|
|
steps.bot-check.outputs.skip != 'true'
|
|
&& startsWith(github.head_ref, 'release/') == true
|
|
&& github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
|
|
uses: ./.github/actions/release-notes/generate
|