Skip to content

fix randomly playing music after it was paused #156

fix randomly playing music after it was paused

fix randomly playing music after it was paused #156

Workflow file for this run

name: Generate xml sitemap
on:
push:
branches: [ main ]
jobs:
sitemap_job:
runs-on: ubuntu-latest
name: Generate a sitemap
steps:
- name: Checkout the repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Generate the sitemap
id: sitemap
uses: cicirello/generate-sitemap@v1
with:
base-url-path: https://stefdp.is-a.dev/
- name: Create Pull Request
id: create_pr
uses: peter-evans/create-pull-request@v3
with:
title: "Automated sitemap update"
body: >
Sitemap updated by the [generate-sitemap](https://github.com/cicirello/generate-sitemap)
GitHub action. Automated pull-request generated by the
[create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action.
- name: Output Stats
run: |
echo "sitemap-path = ${{ steps.sitemap.outputs.sitemap-path }}"
echo "url-count = ${{ steps.sitemap.outputs.url-count }}"
echo "excluded-count = ${{ steps.sitemap.outputs.excluded-count }}"
- name: Sitemap Automerge
if: steps.create_pr.outputs.pull-request-number != ''
run: |
echo "Merging PR #${{ steps.create_pr.outputs.pull-request-number }}"
gh pr merge ${{ steps.create_pr.outputs.pull-request-number }} --merge --repo ${{ github.repository }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}