mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Remove the temporary testing workflow
This commit is contained in:
parent
0f45791f3a
commit
555cf322db
1 changed files with 0 additions and 49 deletions
49
.github/workflows/test-changelog.yaml
vendored
49
.github/workflows/test-changelog.yaml
vendored
|
|
@ -1,49 +0,0 @@
|
|||
name: Temporarily test changelog formatting
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Get changelog
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
changelog: ${{ steps.generate_changelog.outputs.changelog }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install Python tools
|
||||
uses: BrandonLWhite/pipx-install-action@v0.1.1
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.9"
|
||||
cache: poetry
|
||||
|
||||
- name: Install dependencies
|
||||
run: poetry install --with=release --extras=docs
|
||||
|
||||
- name: Install pandoc
|
||||
run: sudo apt update && sudo apt install pandoc -y
|
||||
|
||||
- name: Obtain the changelog
|
||||
id: generate_changelog
|
||||
run: |
|
||||
{
|
||||
echo 'changelog<<EOF'
|
||||
poe --quiet changelog
|
||||
echo EOF
|
||||
} >> "$GITHUB_OUTPUT"
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
pull-requests: write
|
||||
needs: build
|
||||
env:
|
||||
CHANGELOG: ${{ needs.build.outputs.changelog }}
|
||||
steps:
|
||||
- uses: mshick/add-pr-comment@v2
|
||||
with:
|
||||
message: |-
|
||||
### Commit: ${{ github.sha }}
|
||||
### Changelog:
|
||||
|
||||
${{ env.CHANGELOG }}
|
||||
Loading…
Reference in a new issue